/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0A0A0A;
    color: #FFFFFF;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 32px;
    font-weight: 700;
}

h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
}

small {
    font-size: 16px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 1000;
    transition: all 0.3s ease;
    
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(245, 208, 111, 0.5);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #F5D06F;
}

.nav-link.active {
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
}

.nav-button {
    padding: 12px 30px;
    border: 2px solid transparent;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    border-radius: 30px;
    color: #0A0A0A;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(245, 208, 111, 0.5);
}

.nav-button:hover::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(245, 208, 111, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(245, 208, 111, 0.5);
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

 @media (max-width: 1024px) {
     .nav-links {
         display: flex;
         position: absolute;
         top: 80px;
         left: 0;
         width: 100%;
         flex-direction: column;
         padding: 0 20px;
         gap: 0;
         z-index: 999;
         background-color: rgba(10, 10, 10, 0.95);
         backdrop-filter: blur(10px);
         
         /* Hidden state */
         max-height: 0;
         opacity: 0;
         overflow: hidden;
         transform: translateY(-20px);
         transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease, padding 0.4s ease;
     }
     
     .nav-links.active {
         max-height: 600px;
         opacity: 1;
         transform: translateY(0);
         padding: 30px 20px;
         gap: 15px;
     }
     
     .nav-left {
         justify-content: flex-start;
         padding-left: 20px;
     }
     
     .hamburger {
         display: flex;
     }
     
     .nav-link {
         color: #FFFFFF;
         text-decoration: none;
         font-size: 18px;
         font-weight: 500;
         padding: 15px 10px;
         border-bottom: 1px solid rgba(245, 208, 111, 0.1);
         transition: all 0.3s ease;
         display: block;
     }
     
     .nav-link:hover {
         color: #F5D06F;
         padding-left: 20px;
         background: rgba(245, 208, 111, 0.05);
     }
     
     .nav-link.active {
         background: none;
         color: #F5D06F;
         border-left: 3px solid #F5D06F;
         padding-left: 17px;
     }
     
     .nav-link.active::after {
         display: none;
     }
     
     .nav-button {
         text-align: center;
         margin-top: 10px;
     }
 }
/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1;
    max-width: 600px;
    margin-top: 80px;
}

.hero-left h1 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.hero-left h2 {
    margin-bottom: 30px;
}

.hero-left p {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.btn-primary {
    padding: 15px 35px;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    color: #0A0A0A;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(245, 208, 111, 0.6);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    padding: 15px 30px;
    border: 2px solid #F5D06F;
    background: transparent;
    color: #F5D06F;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: rgba(245, 208, 111, 0.1);
    box-shadow: 0 0 20px rgba(245, 208, 111, 0.3);
    transform: scale(1.05);
}

.play-circle {
    width: 40px;
    height: 40px;
    border: 2px solid #F5D06F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.play-circle i {
    color: #F5D06F;
    font-size: 16px;
    margin-left: 3px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 208, 111, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(245, 208, 111, 0);
    }
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 80px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.runner-container {
    position: relative;
    display: inline-block;
    width: 500px;
    height: 600px;
}

.runner-image {
    width: 500px;
    height: 600px;
    border-radius: 0;
    object-fit: cover;
    transition: all 0.3s ease;
}

.runner-image:hover {
    filter: drop-shadow(0 25px 50px rgba(245, 208, 111, 0.4));
}

/* Placeholder fallback when image fails to load */
.runner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0;
}

.runner-container.error::before {
    opacity: 1;
}

.runner-container.error .runner-image {
    opacity: 0;
}

.floating-euro {
    position: absolute;
    top: -20px;
    right: 20%;
    font-size: 60px;
    font-weight: 700;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(245, 208, 111, 0.6));
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.gold-flower {
    position: absolute;
    top: 50%;
    right: 80%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(245, 208, 111, 0.3);
    border-radius: 50%;
    opacity: 0.5;
    animation: rotate 20s linear infinite;
}

.gold-flower::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 1px solid rgba(245, 208, 111, 0.2);
    border-radius: 50%;
}

.gold-flower::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 1px solid rgba(245, 208, 111, 0.2);
    border-radius: 50%;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footprints {
    position: absolute;
    bottom: -10%;
    left: -20%;
    width: 140%;
    height: 60px;
}

.footprint {
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 20px;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    border-radius: 50% 50% 0 0;
    opacity: 0.3;
    filter: blur(1px);
}

.footprint:nth-child(1) {
    left: 10%;
    animation: footprintMove 4s linear infinite;
}

.footprint:nth-child(2) {
    left: 30%;
    animation: footprintMove 4s linear infinite 0.5s;
}

.footprint:nth-child(3) {
    left: 50%;
    animation: footprintMove 4s linear infinite 1s;
}

.footprint:nth-child(4) {
    left: 70%;
    animation: footprintMove 4s linear infinite 1.5s;
}

@keyframes footprintMove {
    0% {
        transform: translateX(-100px) scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100px) scale(0.5);
        opacity: 0;
    }
}

/* Welcome Section */
.welcome {
    width: 100%;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    opacity: 0.2;
    border-radius: 40px 40px 0 0;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.welcome-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.welcome h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.subtext {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.icons-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(245, 208, 111, 0.4);
}

.icon-circle i {
    font-size: 32px;
    color: #0A0A0A;
}

.icon-item h4 {
    color: #FFFFFF;
    font-size: 18px;
}

.footer-text {
    color: #F5D06F;
    font-style: italic;
    margin-top: 30px;
}

.hashtag {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}

/* Ecosystem Section */
.ecosystem {
    width: 100%;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    animation: floatVertical 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.feature-node:hover {
    transform: scale(1.05);
}

@keyframes floatVertical {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.feature-node:nth-child(2) { animation-delay: 0.2s; }
.feature-node:nth-child(3) { animation-delay: 0.4s; }
.feature-node:nth-child(4) { animation-delay: 0.6s; }
.feature-node:nth-child(5) { animation-delay: 0.8s; }

.node-outer {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(245, 208, 111, 0.4);
    position: relative;
    animation: nodeGlow 3s ease-in-out infinite;
}

@keyframes nodeGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(245, 208, 111, 0.4); }
    50% { box-shadow: 0 0 50px rgba(245, 208, 111, 0.7); }
}

.node-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.node-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(245, 208, 111, 0.3), transparent 30%);
    animation: nodeRotate 4s linear infinite;
}

@keyframes nodeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.node-inner i {
    font-size: 48px;
    color: #F5D06F;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(245, 208, 111, 0.5));
}

.feature-node h4 {
    color: #FFFFFF;
    margin-bottom: 10px;
}

.feature-node p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 20px;
}

.explore-btn {
    color: #F5D06F;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 20px;
    border-radius: 20px;
}

.explore-btn:hover {
    background: rgba(245, 208, 111, 0.1);
    box-shadow: 0 0 20px rgba(245, 208, 111, 0.3);
    transform: scale(1.05);
}

/* Video Section */
.video-section {
    width: 100%;
    padding: 100px 50px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-container {
    width: 500px;
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(245, 208, 111, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.video-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    border-radius: 20px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    animation: pulse 2s infinite;
    box-shadow: 0 0 30px rgba(245, 208, 111, 0.5);
    transition: all 0.3s ease;
}

.play-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(245, 208, 111, 0.7);
}

.play-icon i {
    color: #0A0A0A;
    font-size: 32px;
    margin-left: 5px;
}

.video-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-subtext {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    font-size: 16px;
    opacity: 0.7;
}

/* Celebrity Section */
.celebrity {
    width: 100%;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.celebrity-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.celebrity-text {
    flex: 1;
}

.celebrity-text h3 {
    color: #F5D06F;
    font-size: 32px;
    margin-bottom: 20px;
}

.celebrity-text blockquote {
    font-size: 20px;
    color: #FFFFFF;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    padding: 20px;
    border-left: 3px solid #F5D06F;
    background: rgba(245, 208, 111, 0.05);
}

.celebrity-video {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.celebrity-video video {
    width: 400px;
    height: 600px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.floating-flower {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(245, 208, 111, 0.2);
    border-radius: 50%;
    animation: rotate 25s linear infinite;
    opacity: 0.4;
}

.floating-flower::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 1px solid rgba(245, 208, 111, 0.15);
    border-radius: 50%;
}

.celebrity-image::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    border: 2px solid rgba(245, 208, 111, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.celebrity-image::after {
    content: 'Purple Speedy';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

.floating-flower {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(245, 208, 111, 0.2);
    border-radius: 50%;
    animation: rotate 25s linear infinite;
    opacity: 0.4;
}

.floating-flower::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 1px solid rgba(245, 208, 111, 0.15);
    border-radius: 50%;
}

/* Statistics Section */
.statistics {
    width: 100%;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%),
        repeating-linear-gradient(0deg, transparent, transparent 99px, rgba(245, 208, 111, 0.1) 100px);
    background-size: 100% 100%;
    opacity: 0.15;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 85%);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(245, 208, 111, 0.3);
}

.stat-label {
    font-size: 18px;
    color: #FFFFFF;
    opacity: 0.8;
}

/* Final CTA */
.final-cta {
    width: 100%;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.final-cta h3 {
    color: #FFFFFF;
    margin-bottom: 40px;
    z-index: 1;
}

.btn-large {
    font-size: 20px;
    padding: 18px 45px;
    z-index: 1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 2;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(245, 208, 111, 0.4);
    box-shadow: 0 0 50px rgba(245, 208, 111, 0.3);
    max-width: 600px;
    width: 90%;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #F5D06F;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #C89B3C;
    transform: scale(1.2);
}

.modal-placeholder {
    text-align: center;
    padding: 40px;
}

.modal-placeholder p {
    font-size: 24px;
    color: #F5D06F;
}

/* Responsive */
@media (max-width: 1024px) {
    h1, h2 {
        font-size: 48px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-right {
        margin-top: 50px;
    }

    .runner-placeholder {
        width: 350px;
        height: 500px;
    }

    .icons-row {
        gap: 30px;
    }

    .celebrity-content {
        flex-direction: column;
    }

    .celebrity-image::before {
        width: 350px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .icons-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.hero {
        padding: 20px;
    }

    h1, h2 {
        font-size: 36px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .runner-placeholder {
        width: 300px;
        height: 450px;
    }

    .welcome, .ecosystem, .video-section, .celebrity, .statistics, .final-cta {
        padding: 60px 20px;
    }

    .icons-row {
        flex-direction: column;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .video-container {
        width: 100%;
        max-width: 400px;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        min-width: auto;
    }


@media (max-width: 480px) {
    h1, h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    .logo-text {
        font-size: 20px;
    }

    .nav-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.final-cta {
    width: 100%;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.final-cta h3 {
    color: #FFFFFF;
    margin-bottom: 40px;
    z-index: 1;
}

.btn-large {
    font-size: 20px;
    padding: 18px 45px;
    z-index: 1;
}

/* ============================================
   What Is Glamour Section
   ============================================ */

.what-is-glamour {
    width: 100%;
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.what-is-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.what-is-text h3 {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.what-is-text p {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 30px;
}

.what-is-text strong {
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-is-list {
    list-style: none;
    margin-bottom: 40px;
}

.what-is-list li {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.what-is-list i {
    color: #F5D06F;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.what-is-text .btn-primary {
    font-size: 18px;
    padding: 15px 35px;
}

.what-is-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-placeholder {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    border: 2px solid rgba(245, 208, 111, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.whatis-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 24px;
    color: #F5D06F;
    filter: drop-shadow(0 0 10px rgba(245, 208, 111, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
    z-index: 2;
}

.glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.25; }
}

.floating-icon {
    position: absolute;
    font-size: 24px;
    color: #F5D06F;
    filter: drop-shadow(0 0 10px rgba(245, 208, 111, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
}

.icon-camera { top: 20%; right: 20%; animation-delay: 0s; }
.icon-globe { top: 60%; left: 15%; animation-delay: 1s; }
.icon-euro { bottom: 25%; right: 25%; animation-delay: 2s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   How It Works Section
   ============================================ */

.how-it-works {
    width: 100%;
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.how-it-works h3 {
    text-align: center;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-card {
    width: 250px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(245, 208, 111, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(245, 208, 111, 0.3);
    border-color: rgba(245, 208, 111, 0.5);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(245, 208, 111, 0.4);
}

.step-icon i {
    font-size: 24px;
    color: #0A0A0A;
}

.step-card h4 {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 10px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Gold Carousel Section
   ============================================ */

.gold-carousel-section {
    width: 100%;
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
    background: #0A0A0A;
}

.gold-carousel-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 50%, #F5D06F 100%);
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
    opacity: 0.15;
}

.gold-carousel-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px 0;
}

.gold-carousel-container {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gold-card {
    min-width: 320px;
    background: linear-gradient(135deg, #F5D06F 0%, #C89B3C 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(245, 208, 111, 0.3);
    transition: all 0.4s ease;
    opacity: 0.4;
    transform: scale(0.85) translateX(0);
    position: relative;
}

.gold-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 25px 80px rgba(245, 208, 111, 0.5);
}

.gold-card:not(.active) {
    filter: grayscale(80%) brightness(0.8);
}

.gold-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.gold-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gold-card:hover .gold-card-image img {
    transform: scale(1.05);
}

.gold-card-content {
    padding: 24px;
    text-align: center;
    background: rgba(10, 10, 10, 0.9);
}

.gold-card-content h3 {
    color: #F5D06F;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.gold-card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.gold-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.gold-nav-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F5D06F 0%, #C89B3C 100%);
    border: none;
    border-radius: 50%;
    color: #0A0A0A;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(245, 208, 111, 0.3);
}

.gold-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(245, 208, 111, 0.5);
}

.gold-nav-btn:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .gold-carousel-section {
        padding: 60px 20px;
    }

    .gold-card {
        min-width: 280px;
    }

    .gold-card-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .gold-card {
        min-width: 250px;
    }
}

/* Peek effect for adjacent cards */
.gold-carousel-container {
    padding: 20px 10px;
}

.gold-card.prev-peek,
.gold-card.next-peek {
    opacity: 0.2;
    transform: scale(0.7) translateY(20px);
}

.step-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    margin: 60px 20px;
    position: relative;
    animation: flowLine 2s linear infinite;
    box-shadow: 0 0 10px rgba(245, 208, 111, 0.5);
}

@keyframes flowLine {
    0% { opacity: 0.5; box-shadow: 0 0 10px rgba(245, 208, 111, 0.5); }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(245, 208, 111, 0.8); }
    100% { opacity: 0.5; box-shadow: 0 0 10px rgba(245, 208, 111, 0.5); }
}

/* ============================================
   African Features Section
   ============================================ */

.african-features {
    width: 100%;
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.african-features h3 {
    text-align: center;
    color: #F5D06F;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
}

.african-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.african-card {
    background: rgba(245, 208, 111, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.african-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(245, 208, 111, 0.2);
    border-color: rgba(245, 208, 111, 0.3);
}

.african-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(245, 208, 111, 0.4);
    animation: floatVertical 3s ease-in-out infinite;
}

.african-icon i {
    font-size: 28px;
    color: #0A0A0A;
}

.african-card h4 {
    color: #FFFFFF;
    font-size: 20px;
    margin-bottom: 15px;
}

.african-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.african-card:nth-child(1) .african-icon { animation-delay: 0s; }
.african-card:nth-child(2) .african-icon { animation-delay: 0.5s; }
.african-card:nth-child(3) .african-icon { animation-delay: 1s; }
.african-card:nth-child(4) .african-icon { animation-delay: 1.5s; }

/* ============================================
   The Shift Section
   ============================================ */

.the-shift {
    width: 100%;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(245, 208, 111, 0.05) 0%, transparent 100%);
}

.shift-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.shift-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.the-shift h3 {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gold-sub {
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    font-style: italic;
}

.the-shift p {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.the-shift strong {
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.the-shift .btn-primary {
    font-size: 18px;
    padding: 15px 35px;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
    width: 100%;
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.testimonials h3 {
    text-align: center;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(245, 208, 111, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(245, 208, 111, 0.3);
    box-shadow: 0 10px 30px rgba(245, 208, 111, 0.1);
}

.avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 50%;
    border: 2px solid rgba(245, 208, 111, 0.3);
    background-size: cover;
    background-position: center;
}

.avatar.avatar-uk-1 {
    background-image: url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');
}

.avatar.avatar-uk-2 {
    background-image: url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');
}

.avatar.avatar-uk-3 {
    background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');
}

.testimonial-card h5 {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 5px;
}

.location {
    color: rgba(245, 208, 111, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-card blockquote {
    color: #FFFFFF;
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stars {
    color: #F5D06F;
    font-size: 14px;
}

.stars i {
    margin: 0 2px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(245, 208, 111, 0.1);
    border: 1px solid rgba(245, 208, 111, 0.3);
    border-radius: 50%;
    color: #F5D06F;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(245, 208, 111, 0.3);
    box-shadow: 0 0 20px rgba(245, 208, 111, 0.4);
}

.carousel-btn.prev { left: -60px; }
.carousel-btn.next { right: -60px; }

/* ============================================
   FAQ Section
   ============================================ */

.faq {
    width: 100%;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.faq h3 {
    text-align: center;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 208, 111, 0.1);
}

.faq-item:hover {
    border-color: rgba(245, 208, 111, 0.3);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(245, 208, 111, 0.05);
}

.faq-question i {
    color: #F5D06F;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(245, 208, 111, 0.02);
}

.faq-answer.open {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */

footer {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer-top-border {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F5D06F, transparent);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 50px;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #F5D06F;
    padding-left: 5px;
}

.footer-logo {
    text-align: left;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(245, 208, 111, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5D06F;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.social-icons a:hover {
    background: linear-gradient(90deg, #F5D06F 0%, #C89B3C 100%);
    color: #0A0A0A;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(245, 208, 111, 0.4);
}

.footer-bottom {
    text-align: center;
    padding: 20px 50px;
    border-top: 1px solid rgba(245, 208, 111, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .what-is-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .what-is-visual {
        order: -1;
    }

    .visual-placeholder {
        width: 100%;
        max-width: 500px;
        height: 400px;
    }

    .steps-container {
        gap: 20px;
    }

    .step-connector {
        width: 40px;
        margin: 60px 10px;
    }

    .african-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-btn.prev { left: -50px; }
    .carousel-btn.next { right: -50px; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .what-is-glamour, .how-it-works, .african-features, .the-shift, .testimonials, .faq {
        padding: 60px 20px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step-connector {
        width: 3px;
        height: 40px;
        margin: 0;
    }

    .african-grid {
        grid-template-columns: 1fr;
    }

    .visual-placeholder {
        height: 300px;
    }

    .testimonial-card {
        min-width: 280px;
    }

    .runner-image {
        display: none;
    }

    .hero-right {
        display: none;
    }

    .carousel-btn.prev { left: -40px; }
    .carousel-btn.next { right: -40px; }
}

@media (max-width: 480px) {
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .carousel-btn.prev { left: -35px; }
    .carousel-btn.next { right: -35px; }
}