:root {
    --primary-orange: #FF8C42;
    --primary-blue: #0D7FFF;
    --dark-blue: #0A1628;
    --light-blue: #3B9AFF;
    --accent-yellow: #FFD700;
    --text-light: #F5F5F5;
    --text-dark: #1a1a1a;
    --gradient-1: linear-gradient(135deg, var(--primary-orange) 0%, #FF6B35 100%);
    --gradient-2: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    --shadow-glow: 0 0 40px rgba(255, 140, 66, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark-blue);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
}

/* Particle Background */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 10;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 500px; /* Much taller - half the viewport */
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(10, 22, 40, 0.1) 20%,
        rgba(10, 22, 40, 0.3) 40%,
        rgba(10, 22, 40, 0.5) 60%,
        rgba(10, 22, 40, 0.75) 80%,
        var(--dark-blue) 100%);
    z-index: 2;
    pointer-events: none;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

#youtube-player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77777778vh; /* 16:9 aspect ratio - width based on viewport height */
    min-width: 100%;
    height: 56.25vw; /* 16:9 aspect ratio - height based on viewport width */
    min-height: 100%;
    transform: translate(-50%, -50%) scale(1.2); /* Scale up 20% to eliminate black bars */
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.75) 0%, 
        rgba(0, 0, 0, 0.65) 50%,
        rgba(0, 0, 0, 0.4) 80%,
        transparent 100%); /* Fades from dark black to transparent for smooth blend */
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.logo {
    width: 280px;
    height: auto;
    margin-bottom: 2rem;
    filter: 
        drop-shadow(0 0 2px rgba(0, 0, 0, 1))
        drop-shadow(0 0 4px rgba(0, 0, 0, 1))
        drop-shadow(0 0 8px rgba(0, 0, 0, 1))
        drop-shadow(0 0 12px rgba(0, 0, 0, 0.9))
        drop-shadow(0 0 20px rgba(0, 0, 0, 0.8))
        drop-shadow(0 0 30px rgba(255, 140, 66, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    filter: 
        drop-shadow(0 0 2px rgba(0, 0, 0, 1))
        drop-shadow(0 0 4px rgba(0, 0, 0, 1))
        drop-shadow(0 0 8px rgba(0, 0, 0, 1))
        drop-shadow(0 0 15px rgba(0, 0, 0, 0.9))
        drop-shadow(0 4px 25px rgba(0, 0, 0, 0.8));
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch::before {
    animation: glitch-1 2.5s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
    animation: glitch-2 2.5s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    33% { transform: translate(-2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    33% { transform: translate(2px, -2px); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--light-blue);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 
        0 0 2px rgba(0, 0, 0, 1),
        0 0 4px rgba(0, 0, 0, 1),
        0 0 8px rgba(0, 0, 0, 1),
        0 0 12px rgba(0, 0, 0, 0.9),
        0 4px 20px rgba(0, 0, 0, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    display: inline-block;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 
        0 0 2px rgba(0, 0, 0, 1),
        0 0 4px rgba(0, 0, 0, 1),
        0 0 8px rgba(0, 0, 0, 1),
        0 10px 30px rgba(255, 140, 66, 0.4),
        0 0 40px rgba(0, 0, 0, 0.9);
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--light-blue);
    border: 2px solid var(--light-blue);
    box-shadow: 
        0 0 2px rgba(0, 0, 0, 1),
        0 0 4px rgba(0, 0, 0, 1),
        0 0 8px rgba(0, 0, 0, 1),
        0 0 30px rgba(0, 0, 0, 0.9);
}

.btn-secondary:hover {
    background: var(--light-blue);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.btn-huge {
    padding: 1.2rem 3rem; /* Reduced from 1.5rem 4rem */
    font-size: 1.3rem; /* Reduced from 1.5rem */
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 10;
}

.scroll-indicator span {
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
    animation: scroll 1.5s ease-in-out infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scroll {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* Content Section */
.content {
    position: relative;
    z-index: 10;
    padding: 6rem 2rem;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(10, 22, 40, 0.5) 50%,
        var(--dark-blue) 100%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1600px; /* Increased from 1400px */
    margin: 0 auto;
}

/* Split Section Layouts */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.split-reverse {
    direction: rtl;
}

.split-reverse > * {
    direction: ltr;
}

.split-text {
    padding: 2rem;
}

.split-text .lead {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.split-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(245, 245, 245, 0.9);
}

.split-text strong {
    color: var(--primary-orange);
    font-weight: 600;
}

.split-text em {
    color: var(--light-blue);
    font-style: italic;
}

/* Vertical Slideshow */
.split-images {
    position: relative;
    height: 700px; /* Increased from 600px */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.vertical-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.v-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.v-slide.active {
    opacity: 1;
}

.v-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slideshow Navigation Arrows */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 2px solid rgba(255, 140, 66, 0.8);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.slideshow-nav:hover {
    background: rgba(255, 140, 66, 0.9);
    border-color: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-nav.prev {
    left: 15px;
}

.slideshow-nav.next {
    right: 15px;
}

.split-images:hover .slideshow-nav {
    opacity: 1;
}

/* YouTube Video Embeds */
.split-videos {
    display: flex;
    flex-direction: column;
    gap: 3rem; /* Increased from 2rem for more space */
}

.youtube-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio - proper YouTube ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #000;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Dual Column Layout */
.dual-column {
    display: grid;
    grid-template-columns: 1fr 3px 1fr;
    gap: 4rem;
    margin-bottom: 3rem; /* Reduced from default to move up */
    padding: 2.5rem; /* Reduced from 3rem */
    background: rgba(13, 127, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(13, 127, 255, 0.2);
}

.column h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.3rem); /* Reduced to fit better on one line */
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.column p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: rgba(245, 245, 245, 0.9);
}

.column strong {
    color: var(--primary-orange);
    font-weight: 600;
}

.column em {
    color: var(--light-blue);
    font-style: italic;
}

.column-divider {
    background: var(--gradient-1);
    border-radius: 2px;
}

/* Social Groups */
.social-group {
    width: 100%;
}

.social-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.social-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 140, 66, 0.3));
}

.social-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--light-blue);
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-btn svg {
    width: 24px;
    height: 24px;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 104, 60, 0.4);
}

.social-btn.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.social-btn.tiktok:hover {
    background: #000000;
    border-color: #00f2ea;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 242, 234, 0.4);
}

.social-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

.section-divider {
    width: 100px;
    height: 3px;
    background: var(--gradient-1);
    margin: 2rem auto; /* Reduced from 4rem to condense spacing */
    border-radius: 2px;
}

/* Section Headings */
.section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 2rem; /* Reduced from 3rem */
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.leo-heading {
    line-height: 1.2;
}

.leo-heading-special {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.2;
}

.highlight-orange {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Inline CTA within column */
.cta-inline {
    margin-top: 1.5rem; /* Reduced from 2rem to move button up more */
    padding-top: 1.5rem; /* Reduced from 2rem */
    border-top: 2px solid rgba(255, 140, 66, 0.3);
    text-align: center;
}

.cta-inline h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem); /* Reduced size */
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    color: var(--primary-orange);
}

/* Social Split Layout */
.social-split {
    display: grid;
    grid-template-columns: 1fr 3px 1fr;
    gap: 3rem; /* Reduced from 4rem */
    padding: 2.5rem; /* Reduced from 3rem */
    background: rgba(13, 127, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(13, 127, 255, 0.2);
    margin-bottom: 2rem; /* Reduced from 4rem - half the gap below */
}

.social-side {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-divider {
    background: var(--gradient-1);
    border-radius: 2px;
}

/* Footer */
footer {
    position: relative;
    z-index: 10;
    background: rgba(10, 22, 40, 0.9);
    padding: 2rem;
    border-top: 1px solid rgba(255, 140, 66, 0.2);
}

.footer-bottom {
    text-align: center;
    color: rgba(245, 245, 245, 0.6);
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .split-reverse {
        direction: ltr;
    }
    
    .dual-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .column-divider {
        height: 3px;
        width: 100px;
        margin: 0 auto;
    }
    
    .social-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .social-divider {
        height: 3px;
        width: 100px;
        margin: 0 auto;
    }
    
    .split-images {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }
    
    .logo {
        width: 200px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .content {
        padding: 4rem 1.5rem;
    }
    
    .split-text {
        padding: 1rem;
    }
    
    .social-buttons {
        grid-template-columns: 1fr;
    }
    
    .split-images {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .social-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
}