:root {
    --superbet-red: #E30613;
    --superbet-dark: #1A1A1A;
    --superbet-white: #FFFFFF;
    --superbet-gray: #F5F5F5;
    --gold: #FFD700;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--superbet-dark);
    color: var(--superbet-white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at center, #E30613 0%, #8a040c 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 5px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 10%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 10%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0,0,0,0.4);
    letter-spacing: 2px;
}

.dates {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    font-size: 1.5rem;
    font-weight: 700;
}

.dates .date {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.total-prize {
    background: var(--superbet-white);
    color: var(--superbet-red);
    display: inline-block;
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 40px;
    border: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.total-prize:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.5);
}

/* Live CTA Button */
.live-cta {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-live {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #FF0000;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
    animation: pulse 2s infinite;
}

.btn-live:hover {
    background-color: #cc0000;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
}

.yt-icon {
    width: 32px;
    height: 32px;
}

.live-info {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.total-prize .label {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--superbet-dark);
}

.total-prize .amount {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.total-prize .details {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--superbet-dark);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Prizes Section */
.prizes-section {
    padding: 60px 0;
    background-color: #222;
}

.prizes-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--gold);
    text-transform: uppercase;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.prize-card {
    background: #333;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #444;
    position: relative;
    overflow: hidden;
}

.prize-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    border-color: var(--superbet-red);
}

.prize-card.tier-1 {
    background: linear-gradient(145deg, #333 0%, #4a0000 100%);
    border: 2px solid var(--gold);
    grid-column: span 2; /* Make the top prize bigger if grid allows */
}

@media (max-width: 768px) {
    .prize-card.tier-1 {
        grid-column: span 1;
    }
}

.prize-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--gold);
}

.prize-card .icon svg {
    width: 100%;
    height: 100%;
}

.prize-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--superbet-white);
    margin-bottom: 10px;
}

.prize-count {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ccc;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.prize-info {
    display: inline-block;
    background: var(--superbet-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.prize-card.special-pack .icon {
    color: #00ff88;
}

/* Footer */
footer {
    background-color: #111;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

footer p {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

footer .disclaimer {
    font-size: 0.9rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .total-prize .amount {
        font-size: 3rem;
    }
    
    .dates {
        flex-direction: column;
        gap: 10px;
    }
}

/* Sticky Navigation */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--superbet-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--superbet-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Instagram Section */
.instagram-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #1a1a1a, #222);
    text-align: center;
    border-bottom: 1px solid #333;
}

.instagram-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #E1306C;
    text-transform: uppercase;
}

.instagram-content {
    display: flex;
    justify-content: center;
}

.prize-card.featured {
    transform: scale(1.1);
    max-width: 400px;
    width: 100%;
}

.prize-card.featured:hover {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simple mobile hide for now, or could be hamburger */
    }
    
    .nav-container {
        justify-content: center;
    }

    .prize-card.featured {
        transform: scale(1);
        max-width: 100%;
    }
    
    .prize-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Instagram Pack Styles */
.instagram-pack {
    border-color: #E1306C;
    background: linear-gradient(145deg, #333 0%, #2a0015 100%);
}

.instagram-pack:hover {
    border-color: #C13584;
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
}

.instagram-pack .icon {
    color: #E1306C;
}

.social-link {
    display: inline-block;
    margin-top: 15px;
    color: #E1306C;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid #E1306C;
    padding: 8px 15px;
    border-radius: 20px;
}

.social-link:hover {
    background-color: #E1306C;
    color: white;
    transform: translateY(-2px);
}
