:root {
    --primary-color: #FFD700;
    --primary-hover: #e6c200;
    --bg-dark: #0f1923;
    --bg-darker: #080c11;
    --text-light: #ffffff;
    --text-dim: #b3b3b3;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-glow: rgba(255, 215, 0, 0.3);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    /* Official Criccode Social Background Image */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
        url('background.webp');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-light);
    /* Enforce global white text */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-light);
}

.section-title {
    color: var(--text-light) !important;
}

/* Global Page Entry Animation */
@keyframes pageEntry {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.page-animate {
    animation: pageEntry 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Header */
/* Premium Header */
.glass-header {
    background: rgba(8, 12, 17, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    /* Fallback */
    border-image: linear-gradient(90deg, transparent, var(--primary-color), transparent) 1;
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.logo-container img {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    transition: transform 0.3s ease;
}

.logo-container:hover img {
    transform: scale(1.1) rotate(-2deg);
}

/* Nav Links - Modern Pill Effect */
.desktop-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
    color: var(--text-dim);
    font-weight: 600;
    position: relative;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bg-darker);
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.nav-link::after {
    display: none;
    /* Removed underline */
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4b000 100%);
    color: var(--bg-darker);
    box-shadow: 0 4px 15px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(4px);
    color: var(--text-light);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 5%;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
    animation: slideInLeft 1s ease-out;
}

.badge {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), transparent);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.gold-text {
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 50%, #d4b000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-content p {
    color: var(--text-dim);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 520px;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    animation: fadeIn 1.5s ease-out;
}

.glowing-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.stats-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 280px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2.5rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #b89600);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bg-darker);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.stat-info .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.stat-info .label {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Float Animation */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Search Section */
.search-section {
    padding: 0 5% 4rem;
}

.search-container {
    background: rgba(8, 12, 17, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.6rem 0.6rem 0.6rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.search-container:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.search-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.search-container input {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    flex-grow: 1;
    outline: none;
}

.search-tags {
    display: flex;
    gap: 0.5rem;
    padding-right: 1rem;
}

.search-tags span {
    font-size: 0.85rem;
    color: var(--bg-darker);
    font-weight: 600;
    background: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.2s;
}

.search-tags span:hover {
    transform: scale(1.05);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 5% 6rem;
}

.feature-card {
    padding: 2.5rem;
    text-align: left;
    transition: all 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(255, 215, 0, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.4s ease;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    font-size: 2.2rem;
    background: -webkit-linear-gradient(#fff, var(--text-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-dim);
    line-height: 1.7;
}

/* --- NEW SECTIONS --- */

/* Sports Grid */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-light);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 0 5% 6rem;
}

.sport-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sport-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.sport-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.sport-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* How It Works - Timeline */
.how-it-works {
    padding: 0 5% 6rem;
    background: rgba(0, 0, 0, 0.2);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    text-align: center;
    min-width: 250px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-darker);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.step-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Download Banner */
.download-banner {
    background: linear-gradient(45deg, #000, #1a1a1a);
    margin: 0 5% 6rem;
    border-radius: 20px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download-content {
    max-width: 500px;
    z-index: 2;
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-visual {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    transform: rotate(-15deg);
}

/* FAQ Accordion */
.faq-section {
    max-width: 800px;
    margin: 0 auto 6rem;
    padding: 0 5%;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-dim);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    padding-top: 0;
    max-height: 200px;
}

.faq-toggle {
    transition: transform 0.3s;
    color: var(--primary-color);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}


/* SEO Content */
.seo-content {
    background: rgba(8, 12, 17, 0.5);
    padding: 4rem 5%;
    color: var(--text-dim);
    font-size: 0.95rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.seo-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5%;
    text-align: center;
    color: var(--text-dim);
    background: #05080c;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-dim);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Mobile Menu */
/* Mobile Menu - Full Screen Modern */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1002;
    transition: transform 0.3s;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at top right, #1a252f 0%, #05080c 100%);
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateX(100%);
    /* Slide from right */
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    color: var(--text-dim);
    transition: all 0.3s;
    border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--primary-color);
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .desktop-nav,
    .auth-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
        padding-bottom: 5rem;
        justify-content: center;
    }

    .hero-content {
        margin-bottom: 4rem;
        width: 100%;
    }

    h1 {
        font-size: 3rem;
    }

    .cta-group {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 350px;
        margin-top: 5rem;
    }

    .stats-card {
        padding: 1.5rem;
        min-width: 240px;
    }

    .stat-info .number {
        font-size: 2rem;
    }

    .search-tags {
        display: none;
    }

    .download-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .download-visual {
        display: none;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Pulse animation for CTA */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

/* App Notification Banner */
.app-notification {
    position: fixed;
    bottom: -120px;
    /* Start hidden deeper */
    left: 0;
    width: 100%;
    background: rgba(8, 12, 17, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--primary-color);
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.7);
    transition: bottom 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    /* Premium ease */
}

.app-notification.show {
    bottom: 0;
}

.app-notif-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-notif-icon {
    width: auto;
    height: 50px;
    margin-right: 5px;
    display: block;
    border-radius: 0;
    box-shadow: none;
    border: none;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.app-notif-text h4 {
    color: var(--text-light);
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.app-notif-text p {
    color: var(--primary-color);
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.app-notif-close {
    position: absolute;
    top: -12px;
    right: 15px;
    background: var(--bg-dark);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.app-notif-close:hover {
    transform: scale(1.1);
}

/* Promo Modal (Popup) */
.promo-content {
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-promo {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}


.close-promo:hover {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444 !important;
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 10000;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #25d366;
}

@media (max-width: 768px) {
    .float-whatsapp {
        bottom: 110px;
        /* Position above the sticky app banner */
        width: 50px;
        height: 50px;
        font-size: 28px;
        right: 15px;
    }
}

/* FAQ Accordion Styles */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-dim);
    line-height: 1.6;
    display: none;
    /* Hidden by default */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

/* Process Guide Section (Tabs & Posters) */
.process-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.process-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.process-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Poster Card Style */
.poster-card {
    background: linear-gradient(145deg, rgba(20, 30, 40, 0.9), rgba(10, 15, 20, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.poster-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.poster-visual {
    height: 180px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1), transparent 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.poster-icon {
    font-size: 4rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.poster-info {
    padding: 2rem;
    text-align: left;
}

.poster-step {
    background: var(--primary-color);
    color: #000;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.poster-title {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.poster-desc {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 0.95rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}