/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */

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

:root {
    /* Colors */
    --dark-bg: #0a0e27;
    --dark-blue: #1a1f3a;
    --navy: #0f1629;
    --gold: #d4af37;
    --gold-light: #f0d475;
    --gold-dark: #b8941f;
    --white: #ffffff;
    --light-gray: #e8e8e8;
    --medium-gray: #9ca3af;
    --text-light: #d1d5db;
    --text-lighter: #9ca3af;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f0d475 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 14, 39, 0.7) 0%, rgba(26, 31, 58, 0.9) 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   CINEMATIC SPLASH SCREEN
   ======================================== */

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100); /* iOS Safari fix */
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1629 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Animation removed - controlled by JavaScript click event */
}

.splash-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: splashContentIn 1s ease-out;
}

.splash-logo-container {
    position: relative;
    margin-bottom: 30px;
    animation: logoReveal 1.5s ease-out;
}

.splash-logo {
    max-width: 400px;
    width: 90vw;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8));
    animation: logoPulse 2s ease-in-out infinite;
}

.splash-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shine 3s ease-in-out infinite;
}

.splash-tagline {
    margin-top: 30px;
    opacity: 0;
    animation: taglineFadeIn 1s ease-out 0.8s forwards;
}

.splash-tagline p {
    font-size: 24px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.splash-enter-btn {
    margin-top: 50px;
    padding: 20px 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50px;
    color: var(--dark-bg);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
    opacity: 0;
    animation: btnFadeIn 0.8s ease-out 1.2s forwards;
}

.splash-enter-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.7);
}

.splash-enter-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-text {
    letter-spacing: 1px;
}

.btn-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.splash-enter-btn:hover .btn-icon {
    transform: translateX(5px);
}

.splash-loader {
    width: 300px;
    height: 4px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    margin: 40px auto 0;
    overflow: hidden;
    opacity: 0;
    animation: loaderFadeIn 0.5s ease-out 1.5s forwards;
}

.loader-bar {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 2px;
    animation: loaderProgress 2s ease-in-out 1.5s forwards;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.splash-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 30% 80%, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.4;
    animation: particleFloat 20s linear infinite;
}

/* Splash Screen Animations */

@keyframes splashFadeOut {
    0% { opacity: 1; visibility: visible; }
    99% { opacity: 0; visibility: visible; }
    100% { opacity: 0; visibility: hidden; display: none; }
}

@keyframes splashContentIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes logoReveal {
    0% { 
        transform: scale(0.5) rotateY(180deg);
        opacity: 0;
    }
    100% { 
        transform: scale(1) rotateY(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8));
    }
    50% { 
        transform: scale(1.05);
        filter: drop-shadow(0 0 60px rgba(212, 175, 55, 1));
    }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes taglineFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes btnFadeIn {
    0% { opacity: 0; transform: translateY(20px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes loaderFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes loaderProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

/* Hide body content until splash completes */
body.splash-active {
    overflow: hidden;
}

body.splash-active .navbar,
body.splash-active .hero,
body.splash-active section {
    opacity: 0;
}

/* Splash Screen Mobile Optimization */
@media (max-width: 768px) {
    .splash-screen {
        padding: 20px;
    }
    
    .splash-content {
        width: 100%;
        max-width: 100%;
    }
    
    .splash-logo-container {
        margin-bottom: 20px;
    }
    
    .splash-logo {
        max-width: 280px;
        width: 80vw;
    }
    
    .splash-tagline {
        margin-top: 20px;
    }
    
    .splash-tagline p {
        font-size: 16px;
        letter-spacing: 1px;
        line-height: 1.4;
        padding: 0 10px;
    }
    
    .splash-enter-btn {
        margin-top: 30px;
        padding: 18px 40px;
        font-size: 18px;
        gap: 10px;
        width: auto;
        max-width: 90%;
    }
    
    .btn-icon {
        font-size: 20px;
    }
    
    /* Ensure touch target is large enough */
    .splash-enter-btn {
        min-height: 60px;
        min-width: 200px;
    }
    
    /* Disable hover effects on mobile, use active state */
    .splash-enter-btn:hover {
        transform: none;
    }
    
    .splash-enter-btn:active {
        transform: scale(0.95);
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .splash-logo {
        max-width: 240px;
        width: 75vw;
    }
    
    .splash-tagline p {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    
    .splash-enter-btn {
        padding: 16px 35px;
        font-size: 16px;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .splash-screen {
        padding: 10px;
    }
    
    .splash-logo-container {
        margin-bottom: 10px;
    }
    
    .splash-logo {
        max-width: 200px;
    }
    
    .splash-tagline {
        margin-top: 10px;
    }
    
    .splash-tagline p {
        font-size: 14px;
    }
    
    .splash-enter-btn {
        margin-top: 20px;
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .splash-screen {
        /* Fix for iOS Safari address bar */
        height: 100vh;
        height: -webkit-fill-available;
    }
    
    body.splash-active {
        position: fixed;
        width: 100%;
    }
}

/* Prevent body scrolling on mobile when splash is active */
@media (max-width: 768px) {
    body.splash-active {
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 24px;
}

.bb-logo {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 32px;
    font-weight: 900;
}

.mgmt-text {
    color: var(--white);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary-small {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--gold);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    z-index: 999;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--gold);
    padding-left: 15px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #0f1629 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

/* Animated Stars Background */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 60px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 90px 10px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.3;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 150px 20px 80px;
}

.hero-logo {
    margin-bottom: 40px;
    animation: logoFloat 3s ease-in-out infinite;
}

.hero-logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.5));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    margin-bottom: 60px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-primary i {
    margin-right: 10px;
}

.btn-secondary {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1629 100%);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border-color: var(--gold);
}

.btn-tertiary {
    background: linear-gradient(135deg, #0f1629 0%, #0a0e27 100%);
    color: var(--gold-light);
    border: 2px solid var(--gold-light);
}

.btn-tertiary:hover {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border-color: var(--gold-light);
}

.media-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.media-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gold);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.media-icon:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */

section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-lighter);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   WHAT WE'RE BUILDING SECTION
   ======================================== */

.what-building {
    background: var(--navy);
}

.building-content {
    max-width: 1000px;
    margin: 0 auto;
}

.building-main {
    text-align: center;
    margin-bottom: 60px;
}

.lead-text {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.lead-text strong {
    color: var(--gold);
    font-weight: 700;
}

.building-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.building-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.building-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.card-icon.gold {
    color: var(--gold);
}

.building-card h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.building-card p {
    color: var(--text-lighter);
    line-height: 1.7;
}

/* ========================================
   WHO THIS IS FOR SECTION
   ======================================== */

.who-for {
    background: var(--dark-bg);
}

/* ========================================
   VIDEO SHOWCASE SECTION
   ======================================== */

.video-showcase {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--navy) 100%);
    position: relative;
}

.video-icon-header {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}

.video-content {
    max-width: 1100px;
    margin: 0 auto;
}

.featured-video {
    margin-bottom: 60px;
    background: var(--dark-blue);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.featured-video:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    padding: 30px 40px;
}

.video-description h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.video-description p {
    color: var(--text-lighter);
    line-height: 1.7;
    font-size: 16px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.video-card {
    background: var(--dark-blue);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.video-card .video-wrapper {
    padding-bottom: 56.25%;
}

.video-card h4 {
    font-size: 20px;
    color: var(--white);
    margin: 20px 20px 10px;
    font-weight: 700;
}

.video-card p {
    color: var(--text-lighter);
    margin: 0 20px 20px;
    font-size: 14px;
    line-height: 1.6;
}

.video-cta {
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    margin-top: 40px;
}

.video-cta h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.video-cta p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ========================================
   WHO THIS IS FOR SECTION
   ======================================== */

.who-for {
    background: var(--dark-bg);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.platform-card {
    background: var(--dark-blue);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.platform-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--dark-bg);
    transition: var(--transition);
}

.platform-card:hover .platform-icon {
    transform: scale(1.1) rotate(5deg);
}

.platform-card h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.platform-card p {
    color: var(--text-lighter);
    line-height: 1.7;
}

/* ========================================
   TALENT SECTION
   ======================================== */

.talent-section {
    background: var(--dark-bg);
    position: relative;
}

.talent-icon-header {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}

.talent-content {
    max-width: 1000px;
    margin: 0 auto;
}

.talent-intro {
    text-align: center;
    margin-bottom: 60px;
}

.talent-intro h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 700;
}

.talent-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.talent-benefit {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
}

.talent-benefit:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.talent-benefit i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.talent-benefit p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.talent-benefit strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.talent-form-container {
    background: var(--dark-blue);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
}

.form-title {
    text-align: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 35px;
    font-weight: 700;
}

.talent-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.media-icon-header {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}

/* ========================================
   SPONSORSHIP SECTION
   ======================================== */

.sponsorship-section {
    background: linear-gradient(180deg, var(--navy) 0%, var(--dark-bg) 100%);
    position: relative;
}

.sponsorship-icon-header {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}

.sponsorship-content {
    max-width: 1100px;
    margin: 0 auto;
}

.sponsorship-intro {
    text-align: center;
    margin-bottom: 70px;
}

.sponsorship-intro h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 700;
}

.sponsorship-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.sponsorship-benefit {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
}

.sponsorship-benefit:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.sponsorship-benefit i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.sponsorship-benefit p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.sponsorship-benefit strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.sponsorship-types {
    margin-bottom: 70px;
}

.sponsorship-types h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.type-card {
    background: var(--dark-blue);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.type-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.type-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--dark-bg);
    transition: var(--transition);
}

.type-card:hover .type-icon {
    transform: scale(1.1) rotate(5deg);
}

.type-card h4 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.type-card p {
    color: var(--text-lighter);
    line-height: 1.7;
}

.sponsorship-form-container {
    background: var(--dark-blue);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.form-subtitle {
    text-align: center;
    color: var(--text-lighter);
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.6;
}

.sponsorship-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ========================================
   BENEFITS SECTION (FOR MEDIA)
   ======================================== */

.benefits {
    background: var(--navy);
}

.benefits-content {
    max-width: 900px;
    margin: 0 auto;
}

.benefits-list {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    background: rgba(212, 175, 55, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--dark-bg);
}

.benefit-text h4 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-text p {
    color: var(--text-lighter);
    line-height: 1.7;
}

.benefits-statement {
    margin-top: 50px;
}

.statement-box {
    background: var(--dark-blue);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 40px;
    color: var(--gold);
    opacity: 0.3;
}

.statement-text {
    font-size: 24px;
    color: var(--white);
    line-height: 1.8;
    font-weight: 500;
}

.statement-text strong {
    color: var(--gold);
    font-weight: 800;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works {
    background: var(--dark-bg);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 20px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--dark-bg);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.step-icon {
    width: 120px;
    height: 120px;
    margin: 40px auto 30px;
    background: var(--dark-blue);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gold);
    transition: var(--transition);
}

.step:hover .step-icon {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.1);
}

.step h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.step p {
    color: var(--text-lighter);
    line-height: 1.7;
}

.step-arrow {
    font-size: 32px;
    color: var(--gold);
    margin: 0 10px;
}

/* ========================================
   APPLICATION FORM SECTION
   ======================================== */

.application {
    background: var(--navy);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-blue);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}

.required {
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    background: var(--navy);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    margin-top: 20px;
    text-align: center;
}

.btn-submit {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ========================================
   AUDIO-VISUAL EXPLAINER SECTION
======================================== */

.explainer-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.explainer-icon-header {
    text-align: center;
    margin-bottom: 20px;
}

.explainer-icon-header i {
    font-size: 60px;
    color: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

.explainer-container {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
    min-height: 500px;
}

.explainer-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
    pointer-events: none;
}

.explainer-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    position: relative;
}

.explainer-visual {
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    backdrop-filter: blur(10px);
}

/* Problem Icons */
.problem-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.icon-bubble {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 30px;
    min-width: 200px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.icon-bubble.artist {
    animation-delay: 0s;
}

.icon-bubble.media {
    animation-delay: 0.5s;
}

.icon-bubble.brand {
    animation-delay: 1s;
}

.icon-bubble i {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.icon-bubble p {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
}

.thought-bubble {
    display: block;
    font-size: 12px;
    color: var(--text-lighter);
    font-style: italic;
}

.problem-text h3,
.solution-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white);
}

.problem-text p,
.solution-text p {
    font-size: 18px;
    color: var(--text-lighter);
    line-height: 1.6;
}

/* Solution Diagram */
.solution-diagram {
    position: relative;
    height: 350px;
    margin-bottom: 40px;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.center-logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    animation: glow 2s ease-in-out infinite;
}

.hub-label {
    text-align: center;
    margin-top: 10px;
    font-weight: 700;
    color: var(--gold);
}

.connection-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.3));
    transform-origin: center left;
    animation: lineGrow 2s ease-in-out forwards;
}

.line-1 {
    top: 30%;
    left: 50%;
    width: 200px;
    transform: rotate(-30deg);
    animation-delay: 0.3s;
}

.line-2 {
    top: 50%;
    left: 50%;
    width: 200px;
    transform: rotate(0deg);
    animation-delay: 0.6s;
}

.line-3 {
    top: 70%;
    left: 50%;
    width: 200px;
    transform: rotate(30deg);
    animation-delay: 0.9s;
}

.connected-node {
    position: absolute;
    background: rgba(212, 175, 55, 0.15);
    border: 3px solid var(--gold);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: nodeAppear 0.6s ease-in-out forwards;
}

.node-1 {
    top: 15%;
    right: 10%;
    animation-delay: 1.2s;
}

.node-2 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.node-3 {
    bottom: 15%;
    right: 10%;
    animation-delay: 1.8s;
}

.connected-node i {
    font-size: 30px;
    color: var(--gold);
    margin-bottom: 5px;
}

.connected-node p {
    font-size: 12px;
    color: var(--white);
    font-weight: 600;
}

/* Service Showcase */
.service-showcase {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.service-icon {
    flex-shrink: 0;
}

.service-icon i {
    font-size: 80px;
    color: var(--gold);
    animation: bounce 2s ease-in-out infinite;
}

.service-details h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--white);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 24px;
    color: var(--gold);
}

.benefit-item span {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
}

/* Step Navigation */
.explainer-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.step-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.step-dot.active {
    background: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--gold);
}

.step-dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

/* Navigation Arrows */
.explainer-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 100;
}

.explainer-arrow:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.explainer-arrow i {
    color: var(--white);
    font-size: 20px;
}

.arrow-prev {
    left: -80px;
}

.arrow-next {
    right: -80px;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 60px rgba(212, 175, 55, 0.8);
    }
}

@keyframes lineGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 200px;
        opacity: 1;
    }
}

@keyframes nodeAppear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Result Showcase */
.result-showcase {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.result-stat {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 15px;
    min-width: 200px;
}

.stat-number {
    font-size: 60px;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-text {
    margin-top: 20px;
}

.result-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--white);
}

.result-text p {
    font-size: 18px;
    color: var(--text-lighter);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .explainer-visual {
        padding: 30px;
    }

    .service-showcase {
        flex-direction: column;
        text-align: center;
    }

    .service-details h3 {
        font-size: 26px;
    }

    .benefit-item span {
        font-size: 16px;
    }

    .arrow-prev {
        left: -60px;
    }

    .arrow-next {
        right: -60px;
    }

    .solution-diagram {
        height: 300px;
    }

    .center-logo img {
        width: 100px;
        height: 100px;
    }

    .connected-node {
        width: 80px;
        height: 80px;
    }

    .connected-node i {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .explainer-section {
        padding: 60px 0;
    }

    .explainer-container {
        margin-top: 40px;
    }

    .explainer-visual {
        padding: 20px;
    }

    .problem-icons {
        flex-direction: column;
    }

    .icon-bubble {
        min-width: 150px;
        padding: 20px;
    }

    .icon-bubble i {
        font-size: 35px;
    }

    .problem-text h3,
    .solution-text h3 {
        font-size: 22px;
    }

    .problem-text p,
    .solution-text p {
        font-size: 16px;
    }

    .service-icon i {
        font-size: 60px;
    }

    .service-details h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .benefit-item span {
        font-size: 15px;
    }

    .arrow-prev,
    .arrow-next {
        display: none;
    }

    .solution-diagram {
        height: 250px;
    }

    .center-logo img {
        width: 80px;
        height: 80px;
    }

    .connected-node {
        width: 60px;
        height: 60px;
    }

    .connected-node i {
        font-size: 20px;
    }

    .connected-node p {
        font-size: 10px;
    }
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-submit i {
    margin-right: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    font-weight: 500;
    display: none;
    line-height: 1.8;
    white-space: pre-line;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid #22c55e;
    color: #86efac;
    font-size: 15px;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #ef4444;
    color: #fca5a5;
    text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--text-lighter);
    font-size: 16px;
    letter-spacing: 1px;
}

.footer-contact h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--gold-light);
}

.footer-statement {
    text-align: center;
    margin-bottom: 30px;
}

.footer-statement p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: var(--text-lighter);
    font-size: 14px;
}

/* Instagram Embed Styling */
.footer-instagram {
    margin: 50px 0 30px;
    padding: 40px 20px;
    background: rgba(26, 31, 58, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-instagram h4 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.footer-instagram .instagram-media {
    margin: 0 auto !important;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-logo img {
        max-width: 200px;
    }
    
    .splash-logo {
        max-width: 280px;
    }
    
    .splash-tagline p {
        font-size: 16px;
    }
    
    .splash-loader {
        width: 200px;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 350px;
        text-align: center;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .building-cards,
    .platform-grid,
    .talent-benefits-grid,
    .sponsorship-benefits-grid,
    .types-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container,
    .talent-form-container,
    .sponsorship-form-container {
        padding: 30px 20px;
    }
    
    .video-description {
        padding: 20px;
    }
    
    .video-description h3 {
        font-size: 22px;
    }
    
    .video-cta {
        padding: 30px 20px;
    }
    
    .video-cta h3 {
        font-size: 24px;
    }
    
    .video-cta p {
        font-size: 16px;
    }
    
    .media-icons {
        gap: 20px;
    }
    
    .media-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .statement-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .platform-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
}