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

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #ffd700;
    --dark-color: #1a1a2e;
    --darker-color: #16213e;
    --light-color: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-secondary: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Placeholder Images */
.placeholder-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.placeholder-image span {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
}

.hero-prize-placeholder {
    height: 300px;
    max-width: 400px;
    margin: 0 auto;
}

.hero-prize-placeholder i {
    font-size: 4rem;
}

.hero-prize-placeholder span {
    font-size: 1.2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--light-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0a0a1a 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: 
        /* Casino grid pattern */
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        /* Diagonal lines for tech effect */
        linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.05) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(247, 147, 30, 0.05) 50%, transparent 60%);
    background-size: 50px 50px, 50px 50px, 100px 100px, 100px 100px;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 50px 50px, 50px 50px, 100px 100px, -100px -100px; }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(247, 147, 30, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.2) 0%, transparent 40%);
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

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

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Casino chip pattern */
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 25% 75%, rgba(247, 147, 30, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 25%, rgba(255, 215, 0, 0.1) 2px, transparent 2px);
    background-size: 80px 80px;
    animation: chipPattern 15s linear infinite;
}

@keyframes chipPattern {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(255, 107, 53, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Casino-style neon shapes */
.shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(255, 107, 53, 0.1) 100%);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.2);
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 5%;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.3) 0%, rgba(255, 107, 53, 0.1) 100%);
    box-shadow: 
        0 0 40px rgba(247, 147, 30, 0.5),
        0 0 80px rgba(247, 147, 30, 0.2);
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 8%;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, rgba(255, 215, 0, 0.1) 100%);
    box-shadow: 
        0 0 25px rgba(255, 107, 53, 0.5),
        0 0 50px rgba(255, 107, 53, 0.2);
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 8%;
    right: 8%;
    animation-delay: 1s;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(247, 147, 30, 0.1) 100%);
    box-shadow: 
        0 0 35px rgba(255, 215, 0, 0.5),
        0 0 70px rgba(255, 215, 0, 0.2);
}

/* Add more shapes for better distribution */
.shape-5 {
    width: 70px;
    height: 70px;
    top: 45%;
    left: 2%;
    animation-delay: 3s;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.3) 0%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0.08;
    box-shadow: 
        0 0 30px rgba(247, 147, 30, 0.4),
        0 0 60px rgba(247, 147, 30, 0.1);
}

.shape-6 {
    width: 90px;
    height: 90px;
    bottom: 25%;
    right: 3%;
    animation-delay: 5s;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0.08;
    box-shadow: 
        0 0 35px rgba(255, 215, 0, 0.4),
        0 0 70px rgba(255, 215, 0, 0.1);
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    color: var(--light-color);
    text-align: left;
    justify-self: start;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-color);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.hero-image {
    position: relative;
    text-align: center;
    justify-self: center;
}

.hero-prize-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    animation: bounce 3s ease-in-out infinite;
}

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

.prize-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: 
        var(--shadow-medium),
        0 0 20px rgba(255, 215, 0, 0.3);
    text-align: center;
    animation: badgeFloat 4s ease-in-out infinite;
    min-width: 80px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

.badge-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 0.3rem;
    animation: logoRotate 3s linear infinite;
    transition: all 0.3s ease;
}

.badge-logo:hover {
    transform: scale(1.1);
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

@keyframes logoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pause rotation on badge hover for better interaction */
.prize-badge:hover .badge-logo {
    animation-play-state: paused;
    transform: scale(1.2) rotate(0deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 215, 0, 1));
}

/* Add a subtle glow to the entire badge */
.prize-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.3), 
        rgba(255, 107, 53, 0.3), 
        rgba(247, 147, 30, 0.3));
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prize-badge:hover::before {
    opacity: 1;
}

.badge-text {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--light-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.badge-value {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--light-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Countdown Section */
.countdown-section {
    padding: 4rem 0;
    background: var(--light-color);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-date {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.time-unit {
    background: var(--gradient-dark);
    color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    min-width: 120px;
    animation: countdownPulse 1s ease-in-out infinite;
}

@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.time-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.time-label {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Participate Section */
.participate-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: var(--transition);
}

.step-card:hover::before {
    left: 0;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Prizes Section */
.prizes-section {
    padding: 6rem 0;
    background: var(--gradient-dark);
    color: var(--light-color);
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.prize-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.prize-card:hover::before {
    opacity: 0.1;
}

.prize-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.prize-card.featured {
    border: 2px solid var(--accent-color);
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.prize-rank {
    background: var(--gradient-secondary);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.prize-image {
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.prize-image img,
.prize-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.prize-card:hover .placeholder-image {
    transform: scale(1.05);
}

.prize-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.prize-value {
    margin-bottom: 1rem;
}

.currency {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.usdt {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
}

.prize-requirement {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Terms Section */
.terms-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.terms-content {
    margin-top: 3rem;
}

.term-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.term-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
}

.term-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.term-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--light-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 2rem;
        font-weight: 800;
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.5),
                     0 0 20px rgba(255, 107, 53, 0.3),
                     0 0 30px rgba(255, 107, 53, 0.2);
        animation: logoGlow 2s ease-in-out infinite alternate;
    }
    
    @keyframes logoGlow {
        from { 
            text-shadow: 0 0 10px rgba(255, 107, 53, 0.5),
                         0 0 20px rgba(255, 107, 53, 0.3),
                         0 0 30px rgba(255, 107, 53, 0.2);
        }
        to { 
            text-shadow: 0 0 15px rgba(255, 107, 53, 0.8),
                         0 0 25px rgba(255, 107, 53, 0.5),
                         0 0 35px rgba(255, 107, 53, 0.3);
        }
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        justify-items: center;
        align-items: center;
        padding: 2rem 1rem;
        min-height: 90vh;
        align-content: center;
    }
    
    .hero-text {
        text-align: center;
        justify-self: center;
        max-width: 100%;
        padding-right: 0;
        width: 100%;
    }
    
    .hero-image {
        justify-self: center;
        width: 100%;
        max-width: 350px;
    }
    
    .hero-title {
        font-size: 3rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-title .title-line:first-child {
        font-size: 3.5rem;
        font-weight: 900;
        text-shadow: 0 0 15px rgba(255, 107, 53, 0.6),
                     0 0 25px rgba(255, 107, 53, 0.4),
                     0 0 35px rgba(255, 107, 53, 0.2);
        animation: heroTitleGlow 2s ease-in-out infinite alternate;
        display: block;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    @keyframes heroTitleGlow {
        from { 
            text-shadow: 0 0 15px rgba(255, 107, 53, 0.6),
                         0 0 25px rgba(255, 107, 53, 0.4),
                         0 0 35px rgba(255, 107, 53, 0.2);
        }
        to { 
            text-shadow: 0 0 20px rgba(255, 107, 53, 0.9),
                         0 0 30px rgba(255, 107, 53, 0.6),
                         0 0 40px rgba(255, 107, 53, 0.3);
        }
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        min-width: 140px;
        justify-content: center;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 1rem;
    }
    
    .time-value {
        font-size: 1.8rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .prizes-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0.8rem;
    }
    
    .logo-text {
        font-size: 2.5rem;
        font-weight: 900;
        text-shadow: 0 0 15px rgba(255, 107, 53, 0.8),
                     0 0 25px rgba(255, 107, 53, 0.6),
                     0 0 35px rgba(255, 107, 53, 0.4),
                     0 0 45px rgba(255, 107, 53, 0.2);
        animation: logoGlowIntense 1.5s ease-in-out infinite alternate;
    }
    
    @keyframes logoGlowIntense {
        from { 
            text-shadow: 0 0 15px rgba(255, 107, 53, 0.8),
                         0 0 25px rgba(255, 107, 53, 0.6),
                         0 0 35px rgba(255, 107, 53, 0.4),
                         0 0 45px rgba(255, 107, 53, 0.2);
            transform: scale(1);
        }
        to { 
            text-shadow: 0 0 20px rgba(255, 107, 53, 1),
                         0 0 30px rgba(255, 107, 53, 0.8),
                         0 0 40px rgba(255, 107, 53, 0.6),
                         0 0 50px rgba(255, 107, 53, 0.4);
            transform: scale(1.05);
        }
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        min-height: 85vh;
    }
    
    .hero-text {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-title .title-line:first-child {
        font-size: 4rem;
        font-weight: 900;
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.8),
                     0 0 30px rgba(255, 107, 53, 0.6),
                     0 0 40px rgba(255, 107, 53, 0.4),
                     0 0 50px rgba(255, 107, 53, 0.2);
        animation: heroTitleGlowIntense 1.5s ease-in-out infinite alternate;
        letter-spacing: 2px;
        display: block;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    @keyframes heroTitleGlowIntense {
        from { 
            text-shadow: 0 0 20px rgba(255, 107, 53, 0.8),
                         0 0 30px rgba(255, 107, 53, 0.6),
                         0 0 40px rgba(255, 107, 53, 0.4),
                         0 0 50px rgba(255, 107, 53, 0.2);
            transform: scale(1);
        }
        to { 
            text-shadow: 0 0 25px rgba(255, 107, 53, 1),
                         0 0 35px rgba(255, 107, 53, 0.8),
                         0 0 45px rgba(255, 107, 53, 0.6),
                         0 0 55px rgba(255, 107, 53, 0.4);
            transform: scale(1.02);
        }
    }
    
    .hero-image {
        max-width: 300px;
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 80%;
        max-width: 250px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Language Switcher */
.language-switcher {
    margin-left: 20px;
}

.language-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    min-width: 120px;
}

.language-select:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.language-select:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.language-select option {
    background: var(--dark-bg);
    color: white;
    padding: 8px;
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin: 10px 0;
        margin-left: 0;
    }
    
    .language-select {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Desktop Hero Improvements */
@media (min-width: 769px) {
    .hero-content {
        min-height: 80vh;
        align-content: center;
        padding: 4rem 2rem;
    }
    
    .hero-text {
        max-width: 500px;
        padding-right: 2rem;
    }
    
    .hero-title {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        line-height: 1.7;
    }
    
    .hero-image {
        max-width: 450px;
        width: 100%;
    }
    
    .hero-prize-placeholder {
        height: 350px;
        max-width: 450px;
    }
    
    /* Desktop prize badge overrides */
    .prize-badge-logo {
        top: -25px;
        right: -25px;
        animation: logoFloat 4s ease-in-out infinite;
    }

    .badge-logo-only {
        width: 180px;
        drop-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    }

    .badge-logo-only:hover {
        transform: scale(1.3) rotate(0deg);
        filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(255, 215, 0, 1));
    }
}

/* Mobile Prize Badge Styles - Add before the desktop media query */
.prize-badge-logo {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 10;
    animation: logoFloat 4s ease-in-out infinite;
}

.badge-logo-only {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    animation: logoRotate 3s linear infinite;
    transition: all 0.3s ease;
    drop-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.badge-logo-only:hover {
    animation-play-state: paused;
    transform: scale(1.2) rotate(0deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 215, 0, 1));
    opacity: 1;
}

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

/* Tablet responsive adjustments */
@media (max-width: 768px) and (min-width: 481px) {
    .prize-badge-logo {
        top: -20px;
        right: -20px;
    }
    
    .badge-logo-only {
        width: 140px;
        drop-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
}

/* Small mobile responsive adjustments */
@media (max-width: 480px) {
    .prize-badge-logo {
        top: -15px;
        right: -15px;
    }
    
    .badge-logo-only {
        width: 100px;
    }
} 