* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #050a1e 0%, #0a1332 50%, #1a1f4a 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(5, 10, 30, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #23c445;
    box-shadow: 0 8px 32px rgba(35, 196, 69, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #23c445;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 60px;
    width: auto;
    margin-right: 10px;
    filter: drop-shadow(0 4px 8px rgba(35, 196, 69, 0.3));
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 6px 12px rgba(35, 196, 69, 0.5));
}

.logo i {
    margin-right: 10px;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quote-btn {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border: 2px solid #25D366;
    border-radius: 30px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.quote-btn:hover::before {
    left: 100%;
}

.quote-btn:hover {
    background: linear-gradient(45deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.quote-btn i {
    font-size: 1.2rem;
}

.main-site-link {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #23c445;
    border-radius: 30px;
    background: linear-gradient(45deg, transparent, rgba(35, 196, 69, 0.1));
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.main-site-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.main-site-link:hover::before {
    left: 100%;
}

.main-site-link:hover {
    background: #23c445;
    color: #050a1e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(35, 196, 69, 0.4);
}

.hero {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(45deg, rgba(35, 196, 69, 0.15), rgba(5, 10, 30, 0.8));
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0" stop-color="%2323c445" stop-opacity="0.1"/><stop offset="1" stop-color="%2323c445" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="600" r="120" fill="url(%23a)"/></svg>');
    pointer-events: none;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #23c445, #ffffff, #23c445);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Scripts Showcase Styles */
.scripts-showcase {
    padding: 4rem 0;
}

.script-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(35, 196, 69, 0.05), rgba(35, 196, 69, 0.02));
    border-radius: 30px;
    border: 1px solid rgba(35, 196, 69, 0.2);
    backdrop-filter: blur(10px);
}

.script-showcase-item.right-content {
    grid-template-areas: "preview content";
}

.script-showcase-item.left-content {
    grid-template-areas: "content preview";
}

.script-showcase-item.right-content .script-content {
    grid-area: content;
}

.script-showcase-item.right-content .script-preview {
    grid-area: preview;
}

.script-showcase-item.left-content .script-content {
    grid-area: content;
}

.script-showcase-item.left-content .script-preview {
    grid-area: preview;
}

.script-content {
    padding: 2rem;
}

.script-badge {
    margin-bottom: 1.5rem;
}

.script-category-badge {
    background: linear-gradient(45deg, #23c445, #2dd55b);
    color: #050a1e;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 15px rgba(35, 196, 69, 0.3);
    display: inline-block;
    white-space: nowrap;
}

.script-showcase-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #23c445, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.script-showcase-description {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.script-features h3 {
    color: #23c445;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.script-features ul {
    list-style: none;
    padding: 0;
}

.script-features li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.script-features li i {
    color: #23c445;
    margin-right: 1rem;
    font-size: 1rem;
}

.script-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #23c445, #2dd55b);
    color: #050a1e;
    box-shadow: 0 8px 25px rgba(35, 196, 69, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 196, 69, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #23c445;
    border: 2px solid #23c445;
}

.btn-secondary:hover {
    background: rgba(35, 196, 69, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(35, 196, 69, 0.2);
}

.script-preview {
    position: relative;
}

.preview-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.preview-container:hover {
    transform: scale(1.05);
}

.script-gif {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(35, 196, 69, 0.8), rgba(5, 10, 30, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.preview-overlay:hover {
    opacity: 1;
}

.preview-overlay i {
    font-size: 4rem;
    color: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Old grid styles for fallback */
.scripts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    padding: 4rem 0;
}

.script-card {
    background: linear-gradient(145deg, rgba(35, 196, 69, 0.1), rgba(35, 196, 69, 0.05));
    border: 1px solid rgba(35, 196, 69, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease forwards;
}

.script-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(35, 196, 69, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.script-card:hover::before {
    opacity: 1;
}

.script-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #23c445;
    box-shadow: 0 20px 40px rgba(35, 196, 69, 0.3);
}

.script-icon {
    font-size: 3rem;
    color: #23c445;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(35, 196, 69, 0.3));
    position: relative;
    z-index: 1;
}

.script-title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.script-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.script-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(35, 196, 69, 0.2);
    position: relative;
    z-index: 1;
}

.script-category {
    background: linear-gradient(45deg, #23c445, #2dd55b);
    color: #050a1e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(35, 196, 69, 0.3);
}

.view-script {
    color: #23c445;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border: 1px solid transparent;
}

.view-script:hover {
    color: #ffffff;
    background: rgba(35, 196, 69, 0.2);
    border-color: #23c445;
    transform: translateX(5px);
}

footer {
    background: linear-gradient(135deg, rgba(5, 10, 30, 0.98), rgba(10, 19, 50, 0.98));
    backdrop-filter: blur(20px);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 3px solid #23c445;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0" stop-color="%2323c445" stop-opacity="0.05"/><stop offset="1" stop-color="%2323c445" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="800" r="100" fill="url(%23a)"/><circle cx="800" cy="600" r="150" fill="url(%23a)"/></svg>');
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(35, 196, 69, 0.3));
}

.footer-description {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links-section h4,
.footer-social h4 {
    color: #23c445;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.footer-links-section h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #23c445, #2dd55b);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #23c445;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.9rem;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}

.social-link.instagram::before {
    background: linear-gradient(45deg, #833ab4, #fd1d1d);
}

.social-link.linkedin {
    background: #0077B5;
    color: white;
}

.social-link.linkedin::before {
    background: #005885;
}

.social-link.whatsapp {
    background: #25D366;
    color: white;
}

.social-link.whatsapp::before {
    background: #128C7E;
}

.social-link i {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(35, 196, 69, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright p {
    color: #cccccc;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-company {
    color: #888888;
    font-size: 0.85rem;
}

/* Enhanced animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .script-showcase-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        margin-bottom: 4rem;
    }

    .script-showcase-item.right-content,
    .script-showcase-item.left-content {
        grid-template-areas: 
            "content"
            "preview";
    }

    .scripts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }

    .header-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .header-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .quote-btn, .main-site-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .logo img {
        height: 50px;
    }

    .script-card {
        padding: 2rem;
    }

    .main-site-link {
        padding: 10px 20px;
    }

    .script-showcase-title {
        font-size: 2rem;
    }

    .script-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links-section h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

/* Individual Script Pages Styles */
.script-detail-page {
    padding: 2rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #23c445;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #2dd55b;
}

.breadcrumb-separator {
    color: #666666;
}

.current-page {
    color: #cccccc;
}

.script-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(45deg, rgba(35, 196, 69, 0.1), rgba(5, 10, 30, 0.8));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.script-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0" stop-color="%2323c445" stop-opacity="0.1"/><stop offset="1" stop-color="%2323c445" stop-opacity="0"/></radialGradient></defs><circle cx="300" cy="200" r="120" fill="url(%23a)"/><circle cx="700" cy="400" r="150" fill="url(%23a)"/></svg>');
    pointer-events: none;
}

.script-header-content {
    position: relative;
    z-index: 1;
}

.script-badge-container {
    margin-bottom: 1.5rem;
}

.script-badge {
    background: linear-gradient(45deg, #23c445, #2dd55b);
    color: #050a1e;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(35, 196, 69, 0.3);
}

.script-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #23c445, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.script-subtitle {
    font-size: 1.3rem;
    color: #23c445;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.script-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.script-preview-section,
.features-section,
.platforms-section,
.technical-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-title i {
    color: #23c445;
    font-size: 1.8rem;
}

.script-preview-gif {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.preview-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(5, 10, 30, 0.9);
    color: #ffffff;
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(35, 196, 69, 0.3);
}

.preview-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.preview-info i {
    color: #23c445;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(35, 196, 69, 0.1), rgba(35, 196, 69, 0.05));
    border: 1px solid rgba(35, 196, 69, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(35, 196, 69, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #23c445;
    box-shadow: 0 15px 40px rgba(35, 196, 69, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #23c445, #2dd55b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #050a1e;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.platform-item {
    background: linear-gradient(145deg, rgba(35, 196, 69, 0.1), rgba(35, 196, 69, 0.05));
    border: 1px solid rgba(35, 196, 69, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.platform-item:hover {
    transform: translateY(-3px);
    border-color: #23c445;
    box-shadow: 0 10px 30px rgba(35, 196, 69, 0.2);
}

.platform-item i {
    font-size: 2rem;
    color: #23c445;
}

.platform-item span {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.platform-item.facebook:hover i { color: #1877F2; }
.platform-item.instagram:hover i { color: #E4405F; }
.platform-item.whatsapp:hover i { color: #25D366; }
.platform-item.linkedin:hover i { color: #0077B5; }
.platform-item.twitter:hover i { color: #1DA1F2; }
.platform-item.youtube:hover i { color: #FF0000; }
.platform-item.tiktok:hover i { color: #000000; }
.platform-item.telegram:hover i { color: #0088CC; }
.platform-item.discord:hover i { color: #5865F2; }
.platform-item.pinterest:hover i { color: #E60023; }
.platform-item.snapchat:hover i { color: #FFFC00; }

.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-item {
    background: linear-gradient(145deg, rgba(35, 196, 69, 0.05), rgba(35, 196, 69, 0.02));
    border: 1px solid rgba(35, 196, 69, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.tech-item h3 {
    color: #23c445;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.tech-item p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-section {
    background: linear-gradient(135deg, rgba(35, 196, 69, 0.1), rgba(5, 10, 30, 0.9));
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0" stop-color="%2323c445" stop-opacity="0.1"/><stop offset="1" stop-color="%2323c445" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="600" r="120" fill="url(%23a)"/></svg>');
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #23c445, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
} 