/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF4500;
    --secondary-red: #FF2E63;
    --dark-bg: #000000;
    --stadium-glow: #FF6B35;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --gradient-stadium: linear-gradient(135deg, #FF4500 0%, #FF2E63 50%, #8B0000 100%);
}

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

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

.hidden {
    display: none !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid var(--primary-orange);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-orange);
    letter-spacing: 3px;
}

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

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.stadium-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center bottom, rgba(255, 69, 0, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 46, 99, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 69, 0, 0.2) 0%, transparent 50%),
        linear-gradient(to bottom, #000000 0%, #1a0a0a 100%);
}

.stadium-lights {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.light {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 3s ease-in-out infinite alternate;
}

.light-1 {
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.6) 0%, transparent 70%);
    animation-delay: 0s;
}

.light-2 {
    top: 20%;
    right: 15%;
    background: radial-gradient(circle, rgba(255, 46, 99, 0.5) 0%, transparent 70%);
    animation-delay: 1s;
}

.light-3 {
    bottom: 30%;
    left: 20%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
    animation-delay: 2s;
}

.light-4 {
    bottom: 20%;
    right: 10%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.5) 0%, transparent 70%);
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.crowd-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    text-align: left;
}

.text-container {
    position: relative;
    margin-bottom: 30px;
}

.background-text {
    font-family: 'Anton', sans-serif;
    font-size: 8rem;
    color: rgba(255, 69, 0, 0.1);
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 1;
    letter-spacing: 8px;
    text-transform: uppercase;
    user-select: none;
}

.main-text {
    font-family: 'Anton', sans-serif;
    font-size: 12rem;
    color: var(--text-white);
    position: relative;
    z-index: 2;
    letter-spacing: 12px;
    text-shadow: 
        0 0 20px rgba(255, 69, 0, 0.8),
        0 0 40px rgba(255, 46, 99, 0.6),
        0 0 60px rgba(255, 69, 0, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { 
        text-shadow: 
            0 0 20px rgba(255, 69, 0, 0.8),
            0 0 40px rgba(255, 46, 99, 0.6),
            0 0 60px rgba(255, 69, 0, 0.4);
    }
    to { 
        text-shadow: 
            0 0 30px rgba(255, 69, 0, 1),
            0 0 50px rgba(255, 46, 99, 0.8),
            0 0 70px rgba(255, 69, 0, 0.6);
    }
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    color: var(--primary-orange);
    display: block;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 2px;
}

.hero-right {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-product {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-spotlight {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: spotlight 4s ease-in-out infinite alternate;
}

@keyframes spotlight {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.product-display {
    position: relative;
    z-index: 5;
    width: 300px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 2px solid rgba(255, 69, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-display:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.3);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cricket-ball {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 40px;
    height: 40px;
    background: #8B4513;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.cricket-bat {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 8px;
    height: 60px;
    background: #D2B48C;
    border-radius: 4px;
    opacity: 0.3;
    transform: rotate(-30deg);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--dark-bg) 0%, #111 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    color: var(--text-white);
    letter-spacing: 6px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--text-gray);
    letter-spacing: 2px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 69, 0, 0.2);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.3);
    border-color: var(--primary-orange);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.btn {
    font-family: 'Poppins', sans-serif;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-stadium);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--text-white);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    border: 2px solid var(--primary-orange);
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-orange);
    color: var(--text-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--secondary-red);
    transform: scale(1.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.modal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.modal-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.modal-info h3 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: var(--text-white);
    letter-spacing: 2px;
}

.modal-price {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.modal-description {
    font-family: 'Inter', sans-serif;
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 40px 0;
    border-top: 2px solid var(--primary-orange);
}

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

.footer p {
    font-family: 'Inter', sans-serif;
    color: var(--text-gray);
}

.social-links a {
    color: var(--primary-orange);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-red);
    transform: scale(1.2);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--gradient-stadium);
    color: var(--text-white);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

/* Loading State */
.loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
    font-family: 'Poppins', sans-serif;
    grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-right {
        height: 400px;
    }

    .background-text {
        font-size: 4rem;
        top: -10px;
        left: -10px;
    }

    .main-text {
        font-size: 6rem;
        letter-spacing: 6px;
    }

    .section-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-text {
        font-size: 4rem;
        letter-spacing: 4px;
    }

    .background-text {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

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

    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}
