:root {
    --bg-color: #111111;
    --text-color: #FFFFFF;
    --accent-color: #D50000;
    /* Red Carpet */
    --gold-color: #FFD700;
    --font-heading: 'Cinzel Decorative', cursive;
    --font-body: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--gold-color);
    text-transform: uppercase;
}

.big-font {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.medium-font {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 10px;
}

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

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

/* --- Hollywood Card --- */
.hollywood-card {
    background: #000;
    padding: 3rem 2rem;
    border: 2px solid var(--gold-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.hollywood-card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid var(--accent-color);
    pointer-events: none;
}

.hollywood-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(213, 0, 0, 0.4);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: radial-gradient(circle, #2a0000 0%, #000000 100%);
    overflow: hidden;
}

/* Spotlight Animation */
.spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    width: 200px;
    height: 200vh;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    transform-origin: top center;
    animation: swing 5s infinite ease-in-out alternate;
    pointer-events: none;
}

.spotlight:nth-child(1) {
    animation-delay: 0s;
    transform: rotate(-20deg);
}

.spotlight:nth-child(2) {
    animation-delay: 2.5s;
    transform: rotate(20deg);
    left: 40%;
}

@keyframes swing {
    0% {
        transform: rotate(-20deg);
    }

    100% {
        transform: rotate(20deg);
    }
}

.hero-image-container {
    width: 250px;
    height: 250px;
    margin: 2rem auto;
    border-radius: 50%;
    border: 5px solid var(--gold-color);
    overflow: hidden;
    box-shadow: 0 0 30px var(--gold-color);
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Buttons --- */
.btn-hollywood {
    background: linear-gradient(45deg, var(--accent-color), #b71c1c);
    color: #fff;
    border: 1px solid var(--gold-color);
    padding: 12px 35px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.btn-hollywood:hover {
    background: var(--gold-color);
    color: #000;
    transform: translateY(-2px);
    text-decoration: none;
}

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

.countdown-item {
    text-align: center;
    background: #222;
    padding: 1rem;
    border: 1px solid var(--gold-color);
    min-width: 100px;
}

.countdown-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--gold-color);
}

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

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

.btn-music-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-color);
    border: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

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

    .countdown-container {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 0.5rem;
    }

    .countdown-number {
        font-size: 2rem;
    }
}

/* --- Hollywood Gallery --- */
.hollywood-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    background: #000;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
    background-image: linear-gradient(to right,
            transparent 50%,
            rgba(255, 255, 255, 0.1) 50%);
    background-size: 20px 100%;
}

.gallery-item-film {
    border: 10px solid #000;
    border-left: 15px solid #000;
    border-right: 15px solid #000;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.gallery-item-film::before,
.gallery-item-film::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 15px;
    background-image: radial-gradient(circle, #fff 2px, transparent 3px);
    background-size: 10px 10px;
    background-position: center;
    z-index: 2;
}

.gallery-item-film::before {
    top: 0;
}

.gallery-item-film::after {
    bottom: 0;
}

.gallery-item-film img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
}

.gallery-item-film:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

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

.hollywood-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold-color);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--gold-color);
}

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

.timeline-item .time {
    width: 40%;
    text-align: right;
    padding-right: 30px;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-color);
    text-shadow: 0 0 5px rgba(213, 0, 0, 0.5);
}

.timeline-item .content {
    width: 40%;
    padding-left: 30px;
    text-align: left;
}

.timeline-item .content h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--gold-color);
}

.timeline-item .content p {
    margin: 0;
    color: #fff;
}

.timeline-item::after {
    content: '★';
    position: absolute;
    left: 50%;
    width: 30px;
    height: 30px;
    background: #000;
    border: 2px solid var(--gold-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: var(--gold-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}