:root {
    --primary: #39FF14;
    --secondary: #2C2C2C;
    --background: #121212;
    --text: #FFFFFF;
    --glass-bg: rgba(44, 44, 44, 0.7);
    --glass-border: rgba(57, 255, 20, 0.3);
}

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

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', Helvetica, sans-serif;
    background-color: var(--background);
    color: var(--text);
    overflow: hidden; /* Hide normal scrollbar */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1rem; }
h2 { font-size: 3.5rem; margin-bottom: 0.5rem; line-height: 1.1; }
h3 { font-size: 1.5rem; margin-bottom: 2rem; font-weight: 300; letter-spacing: 1px; font-family: 'Montserrat', sans-serif;}
h4 { font-size: 1.25rem; margin-bottom: 0.25rem; color: var(--primary); }

.neon-text {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5), 0 0 20px rgba(57, 255, 20, 0.3);
}

.mb-lg { margin-bottom: 3rem; }
.w-100 { width: 100%; }

/* Container & Snap Scrolling */
.container {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    /* Hide scrollbar for aesthetics */
    scrollbar-width: none; 
}
.container::-webkit-scrollbar {
    display: none;
}

/* Slides */
.slide {
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--background);
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.4) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 4rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.title-content {
    text-align: center;
    align-items: center;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 5rem auto;
}

/* Split Layouts */
.split-layout {
    display: flex;
}

.split-layout .image-half {
    width: 50%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-layout .image-half::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to right, transparent, var(--background));
}

.split-layout.reverse .image-half::after {
    background: linear-gradient(to left, transparent, var(--background));
}

.split-layout .content-half {
    width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--background);
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.center-layout {
    text-align: center;
    background-image: url('assets/FB_IMG_1780578645493.jpg');
}
.center-layout .overlay {
    background: rgba(18, 18, 18, 0.92);
}

/* Feature Lists */
.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
}

.feature-list li::before {
    content: '►';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 0.4rem;
}

/* UI Elements */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
}

.roster {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.rider {
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
}

.spec-box {
    background: rgba(57, 255, 20, 0.1);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.spec-box p { margin-bottom: 0.5rem; font-size: 1.1rem; }
.spec-box p:last-child { margin-bottom: 0; }

.tiers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.tier-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
}

.tier-header {
    font-family: 'Impact', sans-serif;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.partnerships-box {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px dashed var(--primary);
    border-radius: 8px;
    margin-bottom: 3rem;
    color: #ccc;
}

.partnerships-box strong { color: var(--primary); }

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 2.5rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
    color: #ddd;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: var(--background);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.btn:hover {
    background: #2ebd10;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}

.btn.outline {
    background: transparent;
    color: var(--primary);
}

.btn.outline:hover {
    background: rgba(57, 255, 20, 0.1);
}

/* Pagination Dots */
.pagination {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--primary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.9;
    background: rgba(18,18,18,0.7);
    padding: 10px 20px;
    border-radius: 30px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.chevron {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
}

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

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Mobile Maximization */
@media (max-width: 900px) {
    /* Disable snap scrolling on small screens to prevent clipping, but keep it as a scroll container */
    .container {
        scroll-snap-type: none !important;
        height: 100vh !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    }
    
    .slide {
        height: auto !important;
        min-height: 100vh !important;
        scroll-snap-align: none !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .split-layout {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .split-layout .image-half {
        width: 100% !important;
        height: auto !important; 
        min-height: 40vh !important;
        flex: none !important;
    }
    
    .split-layout .content-half {
        width: 100% !important;
        height: auto !important;
        min-height: 60vh !important;
        padding-bottom: 3rem !important;
        flex: none !important;
    }

    .split-layout .image-half::after {
        background: linear-gradient(to bottom, transparent, var(--background));
    }
    
    .content {
        padding: 2rem 5% !important;
        justify-content: flex-start !important;
        height: auto !important;
    }
    
    h1 { font-size: 2.2rem !important; }
    h2 { font-size: 1.8rem !important; }
    h3 { font-size: 1.2rem !important; margin-bottom: 1.5rem !important; }
    
    .tiers-container {
        grid-template-columns: 1fr !important;
    }
    
    .roster {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .pagination {
        display: none !important; /* Hide dots on mobile */
    }

    /* Side by Side adjustments for mobile */
    .side-by-side {
        padding: 1rem !important;
        gap: 1rem !important;
        height: auto !important;
        flex-direction: column !important; /* Stack them vertically on mobile! */
    }
    
    .split-img {
        min-height: 35vh !important;
        width: 100% !important;
    }

    .img-caption {
        bottom: 0 !important;
        position: relative !important;
        font-size: 0.9rem !important;
        margin-top: 0.5rem !important;
        background: rgba(18, 18, 18, 0.8) !important;
        padding: 0.5rem !important;
    }

    /* Disable reveal animations on mobile to ensure all text is visible */
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Keep the rider visible on Slide 1 */
    #slide-1 {
        background-position: 80% center !important;
    }

    /* Stack contact buttons so they don't cause horizontal overflow */
    .contact-links {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
}

/* Side by Side Image Layout (Desktop) */
.side-by-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 3rem;
    background-color: var(--background);
}
.split-img {
    flex: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    border: none;
    min-height: 40vh;
}
.split-img.photo-img {
    background-size: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.img-caption {
    position: absolute;
    bottom: -2rem;
    left: 0; width: 100%;
    background: transparent;
    color: var(--primary);
    padding: 0;
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
}
