/* ============================================
   ADVENTURE IDOL - CINEMATIC STYLES
   Dark Theme | Black + Gold Palette
   ============================================ */

:root {
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8941A;
    --black: #000000;
    --black-light: #0a0a0a;
    --black-lighter: #1a1a1a;
    --white: #ffffff;
    --gray: #888888;
    --gray-dark: #333333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ============================================
   BLOCK 1: LANDING MENU (Initial State - No Scroll)
   ============================================
   Add your CSS styles for the menu when page first loads here
   ============================================ */

.navbar {
    /* Navbar Container Styles */
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.375rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    min-height: 70px;
    overflow: visible;

    /* Add your custom landing menu styles below */
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    z-index: 1001;
    overflow: visible;
    margin-left: 2rem;

    /* Add your custom brand styles for landing here */
}

.navbar-logo {
    height: 160px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
    transition: all 0.3s ease;
    animation: logoSlideIn 0.8s ease-out;
    position: relative;
    margin-bottom: -80px;
    margin-top: -80px;
    z-index: 1002;
    top: 33px
        /* Add your custom logo styles for landing here */
}

.navbar-nav {
    margin-top: 0;
    align-items: center;
    display: flex;
    height: 100%;
    padding-top: 0;

    /* Add your custom nav menu styles for landing here */
}

.nav-item {
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 0;

    /* Add your custom nav item styles for landing here */
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 0;

    /* Add your custom nav link styles for landing here */
}

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

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

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;

    /* Add your custom nav link hover styles for landing here */
}

/* ============================================
   BLOCK 2: SCROLLING MENU (When User Scrolls)
   ============================================
   Add your CSS styles for the menu when user scrolls here
   ============================================ */

.navbar.scrolled {
    /* Navbar Container Styles when Scrolled */
    padding: 0.5rem 0;
    min-height: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);

    /* Add your custom scrolling menu styles below */
}

.navbar.scrolled .navbar-brand {
    /* Add your custom brand styles when scrolled here */
}

.navbar.scrolled .navbar-logo {
    height: 70px;
    max-width: 250px;
    top: 0px
        /* Add your custom logo styles when scrolled here */
}

.navbar.scrolled .navbar-nav {
    /* Add your custom nav menu styles when scrolled here */
}

.navbar.scrolled .nav-item {
    /* Add your custom nav item styles when scrolled here */
}

.navbar.scrolled .navbar-nav .nav-link {
    /* Add your custom nav link styles when scrolled here */
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    /* Add your custom nav link hover styles when scrolled here */
}

@keyframes logoSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.navbar-logo:hover {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.navbar-nav {
    margin-top: 0;
    align-items: center;
    display: flex;
    height: 100%;
    padding-top: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 0;
}

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

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

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

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

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Image Background (fallback or primary) */
.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%),
        url('climbing.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    animation: heroImageZoom 20s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

/* Responsive Hero Background */
@media (max-width: 768px) {
    .hero-image-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .hero-image-bg {
        background-attachment: scroll;
    }
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 6rem;
    letter-spacing: 8px;
    color: var(--white);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5),
        0 0 60px rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate, titleSlideIn 1s ease-out;
    position: relative;
    display: inline-block;
}

.hero-logo-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    animation: titleSlideIn 1s ease-out;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

.hero-idol {
    font-family: 'Bebas Neue', cursive;
    color: var(--gold);
    font-style: italic;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8),
        0 0 60px rgba(212, 175, 55, 0.5);
    position: relative;
    display: inline-block;
    transform: translateY(-5px);
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.5);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.5),
            0 0 60px rgba(212, 175, 55, 0.3);
    }

    to {
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.8),
            0 0 80px rgba(212, 175, 55, 0.5),
            0 0 100px rgba(212, 175, 55, 0.3);
    }
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    white-space: nowrap;
    display: inline-block;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.prize-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    padding: 1rem 2.5rem;
    border-radius: 50px;
    margin: 2rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    animation: blinkYellowShadow 1.5s ease-in-out infinite;
}

/* Blinking Yellow Box Shadow Animation for Prize Badge */
@keyframes blinkYellowShadow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4),
            0 0 20px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.9),
            0 0 60px rgba(255, 215, 0, 0.7),
            0 0 80px rgba(255, 215, 0, 0.5),
            0 0 100px rgba(255, 215, 0, 0.3);
    }
}

.prize-badge i {
    margin-right: 0.5rem;
}

.hero-buttons {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none;
    color: var(--black);
    font-weight: 700;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    color: var(--black);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 700;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: var(--black);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    border-color: var(--gold-light);
}

.btn-outline:active {
    transform: translateY(-2px) scale(1.02);
}

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

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Fade-in animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-in 0.9s both;
}

.fade-in-delay-4 {
    animation: fadeIn 1s ease-in 1.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    animation: titleReveal 1s ease-out forwards;
    opacity: 0;
    position: relative;
    display: inline-block;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: underlineExpand 1s ease-out 0.5s forwards;
}

@keyframes underlineExpand {
    to {
        width: 100px;
    }
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--black-lighter);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.feature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* opacity: 0.25; */
    z-index: 0;
    transition: all 0.5s ease;
    filter: grayscale(30%) brightness(0.4);
}

.feature-card:hover .feature-image {
    opacity: 0.4;
    transform: scale(1.1);
    filter: grayscale(0%) brightness(0.5);
}

.feature-card .feature-icon,
.feature-card h3,
.feature-card p {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03) rotate(1deg);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--gold-light);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.feature-card p {
    color: var(--gray);
    font-size: 1rem;
}

/* ============================================
   JOURNEY SECTION
   ============================================ */

.journey-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%),
        url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.journey-section .container {
    position: relative;
    z-index: 1;
}

.journey-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 100px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: -3rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-number {
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--black);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: rotateIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0);
    }

    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

.timeline-item:hover .timeline-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.timeline-content {
    background: var(--black-lighter);
    padding: 2rem;
    border-radius: 10px;
    flex: 1;
    border-left: 3px solid var(--gold);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.timeline-content:hover::before {
    left: 100%;
}

.timeline-content:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-left-width: 5px;
    border-left-color: var(--gold-light);
}

.timeline-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.timeline-content p {
    color: var(--gray);
    margin: 0;
}

.timeline-item.highlight .timeline-content {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-left-width: 5px;
}

.timeline-item.highlight .timeline-number {
    width: 100px;
    height: 100px;
    font-size: 2.2rem;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
}

/* ============================================
   DIFFERENCE SECTION
   ============================================ */

.difference-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%),
        url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.difference-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.difference-section .container {
    position: relative;
    z-index: 1;
}

.difference-card {
    background: var(--black-lighter);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
    animation: slideInScale 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateX(-30px) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.difference-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.difference-card:hover::after {
    opacity: 1;
}

.difference-card:hover {
    transform: translateY(-15px) scale(1.05) rotate(-2deg);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
}

.difference-card:hover .difference-icon {
    transform: scale(1.3) rotate(15deg);
    color: var(--gold-light);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
}

.difference-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.difference-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.difference-card p {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 300;
}

/* ============================================
   PRIZE SECTION
   ============================================ */

.prize-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.prize-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0.7) 70%);
    pointer-events: none;
    z-index: 0;
}

.prize-section .container {
    position: relative;
    z-index: 1;
}

.prize-content {
    position: relative;
    z-index: 2;
}

.prize-amount {
    font-family: 'Bebas Neue', cursive;
    font-size: 8rem;
    color: var(--gold);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.6),
        0 0 80px rgba(212, 175, 55, 0.4);
    margin-bottom: 1.5rem;
    animation: glow 2s ease-in-out infinite alternate;
    line-height: 1;
}

.prize-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.prize-description {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 300;
}

/* ============================================
   TAGLINES SECTION
   ============================================ */

.taglines-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%),
        url('https://images.unsplash.com/photo-1551632811-561732d1e306?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

.taglines-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 0;
}

.taglines-section .container {
    position: relative;
    z-index: 1;
}

.tagline-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.tagline-item {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    letter-spacing: 5px;
    color: var(--white);
    opacity: 0.6;
    transition: all 0.5s ease;
    text-align: center;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: calc(var(--i) * 0.2s);
}

.tagline-item:nth-child(1) {
    --i: 0;
}

.tagline-item:nth-child(2) {
    --i: 1;
}

.tagline-item:nth-child(3) {
    --i: 2;
}

.tagline-item:nth-child(4) {
    --i: 3;
}

.tagline-item:hover {
    opacity: 1;
    transform: scale(1.1);
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.tagline-item.highlight-tagline {
    color: var(--gold);
    opacity: 1;
    font-size: 4.5rem;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 0.6;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }

    50% {
        text-shadow: 0 0 60px rgba(212, 175, 55, 0.9),
            0 0 80px rgba(212, 175, 55, 0.6);
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--black-light);
}

.contact-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.3rem;
}

.contact-item strong {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--gray);
    margin: 0;
    font-size: 1rem;
}

.contact-form .form-control {
    background: var(--black-lighter);
    border: 1px solid var(--gray-dark);
    color: var(--white);
    padding: 1rem;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.contact-form .form-control:focus {
    background: var(--black-lighter);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25),
        0 5px 20px rgba(212, 175, 55, 0.2);
    outline: none;
    transform: translateY(-2px);
    border-width: 2px;
}

.contact-form .form-control:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-1px);
}

.contact-form .form-control::placeholder {
    color: var(--gray);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Form Message Styles */
#form-message {
    padding: 1rem;
    border-radius: 5px;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

#form-message.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #28a745;
}

#form-message.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #dc3545;
}

#submit-loader {
    margin-left: 0.5rem;
}

button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

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

.footer-section {
    background: var(--black);
    border-top: 1px solid var(--gray-dark);
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.footer-tagline {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 300;
    font-style: italic;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-lighter);
    color: var(--gold);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    color: var(--black);
    transform: translateY(-8px) rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

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

@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: 6px;
    }

    .hero-logo-image {
        max-width: 500px;
    }

    .hero-idol {
        font-size: 3.5rem;
    }

    .hero-tagline-banner {
        padding: 0.6rem 1.5rem;
        margin: 0.8rem 0 1.2rem;
    }

    .hero-tagline-banner p {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 2rem;
        white-space: nowrap;
        display: inline-block;
    }

    .hero-description {
        font-size: 1.15rem;
    }

    .hero-message {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .prize-amount {
        font-size: 5rem;
    }

    .champion-line {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .journey-highlight {
        font-size: 2rem;
    }

    .motivational-text {
        max-width: 90%;
        text-align: center;
    }

    .motivational-list p {
        font-size: 1rem;
    }

    .journey-text {
        font-size: 1.1rem;
    }

    .tagline-item {
        font-size: 2.5rem;
    }

    .tagline-item.highlight-tagline {
        font-size: 3rem;
    }

    .navbar-logo {
        height: 140px;
        max-width: 450px;
    }

    .navbar.scrolled .navbar-logo {
        font-size: 1.5rem;
        height: 60px;
        max-width: 200px;
    }

    .navbar {
        padding: 0.3rem 0;
        min-height: 22px;
    }

    .navbar.scrolled {
        padding: 0.3rem 0;
        min-height: 40px;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .feature-card {
        margin-bottom: 2rem;
    }

    .difference-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .hero-logo-image {
        max-width: 400px;
    }

    .hero-idol {
        font-size: 2.5rem;
    }

    .hero-tagline-banner {
        padding: 0.5rem 1rem;
        margin: 0.6rem 0 1rem;
    }

    .hero-tagline-banner p {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        white-space: nowrap;
        display: inline-block;
        padding: 0.3rem 0.8rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }

    .hero-message {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-content {
        padding: 80px 0 50px;
    }

    .prize-badge {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .prize-amount {
        font-size: 4rem;
    }

    .champion-line {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .prize-champion-text {
        margin: 1.5rem 0;
    }

    .journey-highlight {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .motivational-text {
        max-width: 95%;
        text-align: center;
        margin: 1.5rem auto 0;
    }

    .motivational-list p {
        font-size: 0.95rem;
    }

    .journey-text {
        font-size: 1rem;
    }

    .navbar-logo {
        height: 120px;
        max-width: 380px;
        top: -30px;
        margin-bottom: -60px;
        margin-top: -60px;
    }

    .navbar.scrolled .navbar-logo {
        height: 55px;
        max-width: 180px;
    }

    .navbar {
        padding: 0.25rem 0;
        min-height: 20px;
    }

    .navbar.scrolled {
        padding: 0.25rem 0;
        min-height: 35px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .prize-amount {
        font-size: 4rem;
    }

    .prize-title {
        font-size: 1.8rem;
    }

    .tagline-item {
        font-size: 2rem;
    }

    .tagline-item.highlight-tagline {
        font-size: 2.5rem;
    }

    .timeline-item {
        padding-left: 80px;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .timeline-item.highlight .timeline-number {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        padding: 0.6rem 1rem;
    }

    .hero-logo-image {
        max-width: 300px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        white-space: nowrap;
        display: inline-block;
    }

    .prize-amount {
        font-size: 3rem;
    }

    .tagline-item {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .tagline-item.highlight-tagline {
        font-size: 2rem;
    }

    .navbar-logo {
        height: 100px;
        max-width: 300px;
        top: -25px;
        margin-bottom: -50px;
        margin-top: -50px;
    }

    .navbar.scrolled .navbar-logo {
        height: 50px;
        max-width: 150px;
    }

    .navbar {
        padding: 0.2rem 0;
        min-height: 18px;
    }

    .navbar.scrolled {
        padding: 0.25rem 0;
        min-height: 30px;
    }

    .footer-logo {
        height: 50px;
        max-width: 200px;
    }
}

/* Ripple effect for buttons */
.btn-primary,
.btn-outline {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Smooth scroll behavior */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

.text-white {
    color: white;
}

/* Blinking White Shadow Animation */
@keyframes blinkWhiteShadow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.4);
    }

    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 1),
            0 0 40px rgba(255, 255, 255, 0.8),
            0 0 60px rgba(255, 255, 255, 0.6),
            0 0 80px rgba(255, 255, 255, 0.4);
    }
}

.blink-shadow {
    animation: blinkWhiteShadow 1.5s ease-in-out infinite;
    display: inline-block;
}

/* Hero Tagline Banner */
.hero-tagline-banner {
    margin: 1rem 0 1.5rem;
    padding: 0.8rem 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    display: inline-block;
}

.hero-tagline-banner p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Hero Message */
.hero-message {
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
    margin-top: 1rem;
    color: var(--white);
}

/* Motivational Text Styles */
.motivational-text {
    text-align: left;
    max-width: 700px;
    margin: 2rem auto 0;
}

.motivational-list p {
    font-size: 1.1rem;
    font-weight: 500;
}

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

.journey-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

.journey-highlight {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* Prize Champion Text */
.prize-champion-text {
    margin: 2rem 0;
}

.champion-line {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0.5rem 0;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Additional Responsive Improvements */
@media (max-width: 1200px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-logo-image {
        max-width: 250px;
    }

    .hero-idol {
        font-size: 1.8rem;
    }

    .hero-tagline-banner p {
        font-size: 0.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .prize-amount {
        font-size: 2.5rem;
    }

    .champion-line {
        font-size: 1.3rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive table for contact info */
@media (max-width: 768px) {
    .contact-info {
        margin-bottom: 2rem;
    }
}