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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Blue Flames Background */
.flames-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, #000000 0%, #001a33 50%, #003366 100%);
    overflow: hidden;
}

.flames-background::before,
.flames-background::after {
    content: '';
    position: absolute;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center,
        rgba(0, 150, 255, 0.3) 0%,
        rgba(0, 100, 255, 0.2) 25%,
        rgba(0, 50, 255, 0.1) 50%,
        transparent 70%);
    animation: flameMove 15s ease-in-out infinite;
}

.flames-background::after {
    animation: flameMove 20s ease-in-out infinite reverse;
    background: radial-gradient(ellipse at center,
        rgba(30, 144, 255, 0.4) 0%,
        rgba(0, 120, 255, 0.3) 30%,
        rgba(0, 80, 255, 0.15) 50%,
        transparent 70%);
}

@keyframes flameMove {
    0%, 100% {
        transform: translateY(0) translateX(-25%) rotate(0deg);
    }
    25% {
        transform: translateY(-20%) translateX(-15%) rotate(5deg);
    }
    50% {
        transform: translateY(-10%) translateX(-30%) rotate(-3deg);
    }
    75% {
        transform: translateY(-25%) translateX(-20%) rotate(4deg);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid rgba(0, 150, 255, 0.3);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #00a8ff, #0088ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00a8ff, #0088ff);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.band-name {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff, #0088ff, #0044ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 150, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(0, 150, 255, 0.5));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(0, 200, 255, 0.8));
    }
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #88ccff;
}

.featured-song {
    margin: 2rem 0;
    padding: 1rem 2rem;
    background: rgba(0, 150, 255, 0.1);
    border: 2px solid rgba(0, 150, 255, 0.3);
    border-radius: 10px;
    display: inline-block;
}

.song-label {
    color: #88ccff;
    margin-right: 0.5rem;
}

.song-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #00d4ff;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #00a8ff, #0066ff);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 150, 255, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 150, 255, 0.6);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #00d4ff, #0088ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Game Section */
.game-section {
    background: rgba(0, 20, 40, 0.5);
}

.game-description {
    text-align: center;
    font-size: 1.2rem;
    color: #88ccff;
    margin-bottom: 2rem;
}

.game-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(0, 150, 255, 0.4);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 150, 255, 0.3);
}

#gameCanvas {
    display: block;
    width: 100%;
    height: auto;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.game-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.game-overlay p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #88ccff;
}

.game-button {
    margin-top: 2rem;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #00a8ff, #0066ff);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 150, 255, 0.4);
}

.game-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 150, 255, 0.6);
}

.game-stats {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 2px solid rgba(0, 150, 255, 0.3);
}

.stat {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00d4ff;
}

/* Band Section */
.band-section {
    background: rgba(0, 10, 30, 0.3);
}

.band-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.member {
    background: rgba(0, 30, 60, 0.4);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(0, 150, 255, 0.2);
    transition: all 0.3s ease;
}

.member:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 150, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 150, 255, 0.3);
}

.member-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.member h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #00d4ff;
}

.role {
    color: #00a8ff;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.bio {
    color: #88ccff;
    line-height: 1.6;
}

/* Tour Section */
.tour-section {
    background: rgba(0, 20, 40, 0.5);
}

.tour-dates {
    max-width: 800px;
    margin: 0 auto;
}

.tour-item {
    display: flex;
    align-items: center;
    background: rgba(0, 30, 60, 0.4);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 150, 255, 0.2);
    transition: all 0.3s ease;
}

.tour-item:hover {
    border-color: rgba(0, 150, 255, 0.5);
    transform: translateX(10px);
}

.tour-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #00a8ff, #0066ff);
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
    margin-right: 2rem;
}

.month {
    font-size: 0.9rem;
    font-weight: bold;
}

.day {
    font-size: 2rem;
    font-weight: bold;
}

.tour-info {
    flex: 1;
}

.tour-info h3 {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-bottom: 0.3rem;
}

.tour-info p {
    color: #88ccff;
}

.ticket-button {
    padding: 0.8rem 2rem;
    background: rgba(0, 150, 255, 0.2);
    color: #00d4ff;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid rgba(0, 150, 255, 0.4);
    transition: all 0.3s ease;
    font-weight: bold;
}

.ticket-button:hover {
    background: rgba(0, 150, 255, 0.4);
    border-color: rgba(0, 150, 255, 0.6);
}

/* Contact Section */
.contact-section {
    background: rgba(0, 10, 30, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(0, 30, 60, 0.4);
    border: 2px solid rgba(0, 150, 255, 0.2);
    border-radius: 15px;
    text-decoration: none;
    color: #88ccff;
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 150, 255, 0.5);
    background: rgba(0, 50, 100, 0.5);
}

.social-icon {
    font-size: 2.5rem;
}

.contact-email {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 30, 60, 0.4);
    border-radius: 15px;
    border: 2px solid rgba(0, 150, 255, 0.2);
}

.contact-email p {
    color: #88ccff;
    margin-bottom: 0.5rem;
}

.contact-email a {
    color: #00d4ff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
}

.contact-email a:hover {
    color: #00ffff;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding: 2rem;
    color: #88ccff;
    border-top: 2px solid rgba(0, 150, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .band-name {
        font-size: 3rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    h2 {
        font-size: 2rem;
    }

    .tour-item {
        flex-direction: column;
        text-align: center;
    }

    .tour-date {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .social-links {
        gap: 1rem;
    }
}
