:root {
    --bg-color: #050505;
    --text-color: #FFFFFF;
    --neon-pink: #FF00FF;
    --neon-cyan: #00FFFF;
    --neon-lime: #39FF14;
    --card-bg: #111111;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
    background-image:
        linear-gradient(rgba(255, 0, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.neon-text-pink {
    color: #fff;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-pink),
        0 0 80px var(--neon-pink);
    animation: flicker 1.5s infinite alternate;
}

.neon-text-cyan {
    color: #fff;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan),
        0 0 80px var(--neon-cyan);
}

@keyframes flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        opacity: 1;
    }

    20%,
    24%,
    55% {
        opacity: 0.4;
    }
}

.big-font {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.medium-font {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
}

.text-uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 600;
}

/* --- Layout --- */
.section-padding {
    padding: 5rem 1rem;
    position: relative;
}

/* --- Neon Border --- */
.neon-border {
    border: 2px solid #fff;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 10px #fff, 0 0 20px var(--neon-pink), inset 0 0 10px var(--neon-pink);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 280px;
    height: 380px;
    margin: 2rem auto;
    position: relative;
    padding: 5px;
    background: #000;
    box-shadow: 0 0 20px var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.hero-image-container:hover {
    transform: rotate(0deg) scale(1.05);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(120%) brightness(110%);
}

/* --- Buttons --- */
.btn-neon {
    background-color: transparent;
    color: var(--neon-pink);
    border: 2px solid var(--neon-pink);
    padding: 12px 35px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 10px var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink);
}

.btn-neon:hover {
    background-color: var(--neon-pink);
    color: #fff;
    box-shadow: 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink);
    text-decoration: none;
}

/* --- Countdown --- */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-lime);
    text-shadow: 0 0 10px var(--neon-lime);
    background: #000;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--neon-lime);
    box-shadow: 0 0 10px var(--neon-lime);
    margin: 0 auto 10px;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}

/* --- Cards --- */
.neon-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border: 1px solid #333;
    position: relative;
    transition: all 0.3s ease;
}

.neon-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* --- Music Button --- */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.btn-music-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 15px var(--neon-pink);
}

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

    .hero-image-container {
        width: 80%;
    }
}

/* --- Neon Gallery --- */
.neon-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item-neon img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid #333;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.gallery-item-neon:hover img {
    filter: grayscale(0%);
    border-color: var(--neon-lime);
    box-shadow: 0 0 20px var(--neon-lime);
    transform: scale(1.05);
}

/* --- Neon Timeline --- */
.neon-timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.neon-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--neon-pink), var(--neon-cyan), var(--neon-lime));
    box-shadow: 0 0 15px var(--neon-cyan);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item .time {
    width: 80px;
    font-weight: 700;
    color: var(--neon-lime);
    text-align: right;
    padding-right: 20px;
    font-family: 'Orbitron', sans-serif;
}

.timeline-item .icon {
    width: 40px;
    height: 40px;
    background: #000;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 1.2rem;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.timeline-item .info {
    padding-left: 20px;
    flex: 1;
}

.timeline-item .info h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}

.timeline-item .info p {
    margin: 0;
    color: #aaa;
    font-weight: 500;
}