:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #FFD700;
    --dark-bg: #1a1a1a;
    --light-gold: #F5E6A8;
    --accent-orange: #FF6B35;
}

/* Footer Styles */
.footer {
    background: var(--dark-bg);
    color: white;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    filter: brightness(0) invert(1);
}

.footer-title {
    color: var(--secondary-gold);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-contact {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 12px;
}

.contact-item i {
    color: var(--primary-gold);
    margin-top: 2px;
    width: 16px;
    flex-shrink: 0;
}

.contact-item span {
    color: #ccc;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary-gold);
    transform: translateX(5px);
}

.footer-links a i {
    color: var(--primary-gold);
    font-size: 0.8rem;
}

.footer-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-title {
    color: var(--secondary-gold);
    margin-bottom: 15px;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.tiktok {
    background: #000000;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.copyright {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header-top {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    padding: 10px 0;
    color: white;
}

.header-main {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.logo {
    text-align: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.search-box {
    position: relative;
}

.search-input {
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    padding: 10px 50px 10px 20px;
    width: 100%;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gold);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.auth-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    color: white;
    text-decoration: none;
}

.auth-btn.register {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.auth-btn.register:hover {
    background: var(--primary-gold);
    color: white;
}

/* Navigation */
.navbar {
    background: var(--dark-bg) !important;
    padding: 15px 0;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 15px;
    padding: 10px 20px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
}

/* Hero Carousel */
.hero-carousel {
    margin-top: 0;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-indicators button {
    background-color: var(--primary-gold);
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-gold);
    border-radius: 50%;
    padding: 20px;
}

/* Product Section */
.product-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

.product-content {
    padding: 40px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-bg);
    margin-bottom: 30px;
    position: relative;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.highlight {
    color: var(--primary-gold);
    font-weight: bold;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    color: white;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--dark-bg);
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--secondary-gold);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--secondary-gold);
}

.feature-description {
    color: #ccc;
    line-height: 1.6;
}

/* Sports Section */
.sports-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sport-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.sport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sport-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.sport-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(212, 175, 55, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sport-card:hover .sport-overlay {
    opacity: 1;
}

.sport-content {
    padding: 30px;
}

.sport-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.sport-description {
    color: #666;
    margin-bottom: 20px;
}

.sport-button {
    background: var(--primary-gold);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sport-button:hover {
    background: var(--secondary-gold);
    transform: translateX(5px);
}

.sport-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.sport-button:disabled:hover {
    transform: none;
    background: var(--primary-gold);
}

.coming-soon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        text-align: center;
        margin-bottom: 15px;
    }

    .logo-img {
        height: 40px;
    }

    .search-box {
        margin-bottom: 15px;
    }

    .auth-buttons {
        justify-content: center;
        margin-top: 10px;
    }

    .auth-btn {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .product-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-grid,
    .sports-grid {
        grid-template-columns: 1fr;
    }

    .carousel-item img {
        height: 300px;
    }

    .footer-logo-img {
        height: 50px;
    }

    .social-icons {
        justify-content: center;
    }
}