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

:root {
    --dark-green: #1a4d3a;
    --light-green: #2d7a5a;
    --lime-green: #a8e063;
    --orange: #ff6b35;
    --light-blue: #4ecdc4;
    --medium-blue: #3a7bd5;
    --light-grey: #f5f5f5;
    --dark-grey: #333;
    --light-orange: #ffa07a;
    --dark-red: #8b2635;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--dark-grey);
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.coming-soon {
    color: var(--dark-green);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Hero Section */
.hero {
    background-color: #000000;
    padding: 0;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    min-width: 100%;
    min-height: 100%;
    background-color: #000000;
}

/* Ensure video plays on all browsers */
.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

/* Hero Text Section */
.hero-text-section {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.6);
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -1px;
    color: #0a6251;
    display: inline-block;
}

.coming-soon-hero {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(90deg, var(--lime-green), var(--orange), var(--light-blue), var(--lime-green));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta-button {
    background-color: var(--lime-green);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 224, 99, 0.4);
}

/* Section Styles */
.section {
    padding: 80px 0;
    background-color: var(--light-grey);
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M0,100 Q50,50 100,100 T200,100" stroke="%23d4a574" stroke-width="2" fill="none" opacity="0.1"/></svg>');
    background-size: 400px 400px;
    opacity: 0.3;
    pointer-events: none;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 40px;
    text-align: center;
}

.brands-section .section-title,
.scoreboard-section .section-title,
.testimonials-section .section-title,
.events-section .section-title {
    text-align: left;
}

/* Carousel */
.carousel-wrapper {
    position: relative;
}

.carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-arrow {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--dark-green);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    z-index: 10;
}

.carousel-arrow:hover {
    background-color: var(--light-green);
}

/* Product Cards */
.product-card {
    min-width: 280px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 15px;
}

.product-1 {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect width="200" height="200" fill="%23f0f0f0"/><path d="M50,150 L80,80 L120,80 L150,150" stroke="%23333" stroke-width="3" fill="%23ff6b35"/></svg>');
}

.product-2 {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect width="200" height="200" fill="%23f0f0f0"/><path d="M50,150 L80,80 L120,80 L150,150" stroke="%23333" stroke-width="3" fill="%23a8e063"/></svg>');
}

.product-3 {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect width="200" height="200" fill="%23f0f0f0"/><path d="M50,150 L80,80 L120,80 L150,150" stroke="%23333" stroke-width="3" fill="%23ff0000"/></svg>');
}

.product-4 {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect width="200" height="200" fill="%23f0f0f0"/><path d="M50,150 L80,80 L120,80 L150,150" stroke="%23333" stroke-width="3" fill="%23a8e063"/></svg>');
}

.product-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-grey);
}

.product-info p {
    font-size: 14px;
    color: #666;
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--medium-blue) 0%, var(--light-blue) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promo-text {
    color: white;
}

.promo-percent {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.promo-tagline {
    font-size: 36px;
    font-weight: 600;
}

.promo-image {
    flex: 1;
    max-width: 400px;
}

.running-shoes {
    width: 100%;
    height: 300px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 200"><rect width="300" height="200" fill="%23ff0000"/><ellipse cx="150" cy="100" rx="80" ry="40" fill="%23fff"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Brand Cards */
.brand-card {
    min-width: 250px;
    height: 250px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.brand-1 {
    background-color: var(--light-blue);
}

.brand-2 {
    background-color: var(--orange);
}

.brand-3 {
    background-color: var(--lime-green);
}

.brand-4 {
    background-color: var(--orange);
}

.brand-logo {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
}

/* Scoreboard */
.scoreboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.score-card {
    border-radius: 12px;
    padding: 40px 30px;
    color: white;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.score-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.score-1 {
    background-color: var(--light-blue);
}

.score-2 {
    background-color: var(--dark-green);
}

.score-3 {
    background-color: var(--light-orange);
}

.score-4 {
    background-color: var(--dark-red);
}

.score-number {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.score-label {
    font-size: 18px;
    position: relative;
    z-index: 2;
}

/* Testimonials */
.testimonial-card {
    min-width: 400px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.avatar-1 {
    background-color: var(--light-orange);
}

.avatar-2 {
    background-color: var(--light-blue);
}

.testimonial-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-grey);
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-grey);
    position: relative;
}

.quote-mark {
    font-size: 48px;
    line-height: 0;
    position: relative;
    top: 20px;
}

.quote-orange .quote-mark {
    color: var(--orange);
}

.quote-blue .quote-mark {
    color: var(--light-blue);
}

/* Live Section */
.live-section {
    background: linear-gradient(90deg, var(--lime-green) 0%, white 50%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.live-section::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--light-blue);
    border-radius: 50%;
    top: 20%;
    right: 30%;
    opacity: 0.3;
}

.live-section::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: var(--orange);
    border-radius: 50%;
    bottom: 20%;
    right: 20%;
    opacity: 0.3;
}

.live-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.live-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.live-text h2 {
    font-size: 56px;
    font-weight: 700;
    color: var(--dark-grey);
}

.live-yard {
    color: white;
}

.live-arrow {
    color: var(--dark-green);
}

.live-image {
    flex: 1;
    max-width: 500px;
}

.runners {
    width: 100%;
    height: 400px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 400"><rect width="500" height="400" fill="%23f0f0f0"/><circle cx="100" cy="200" r="30" fill="%230033ff"/><circle cx="250" cy="200" r="30" fill="%23ffff00"/><circle cx="400" cy="200" r="30" fill="%23ff0000"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Events */
.event-card {
    min-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-images {
    margin-bottom: 20px;
}

.event-main-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-bottom: 10px;
}

.event-sub-images {
    display: flex;
    gap: 10px;
}

.event-sub-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.event-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-grey);
}

.event-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.view-all-btn {
    background: none;
    border: none;
    color: var(--dark-green);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all-btn:hover {
    color: var(--light-green);
}

/* Footer */
.footer {
    background-color: #0a6251;
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    margin-bottom: 0;
    flex-shrink: 0;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.social-section {
    margin-bottom: 0;
    flex: 1;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 50%;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.social-section h4,
.contact-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.contact-section {
    flex: 1;
    text-align: center;
}

.contact-section p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
    color: white;
}

.contact-section a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
    display: inline-block;
}

.contact-section a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero {
        height: 100vh;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
    }

    .promo-percent {
        font-size: 80px;
    }

    .promo-tagline {
        font-size: 24px;
    }

    .live-content {
        flex-direction: column;
    }

    .live-text h2 {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-right {
        text-align: left;
    }

    .carousel-arrow {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .scoreboard-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-text-section {
        padding: 8px 0;
    }

    .hero {
        height: 100vh;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
}

