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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #1a0a0a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Hero */
.hero {
    text-align: center;
    padding: 4rem 1.5rem 3.5rem;
    background: radial-gradient(ellipse at center top, #5a1010 0%, #3a0808 40%, #1a0505 100%);
    border-bottom: 3px solid #c9a84c;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(90, 16, 16, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(90, 16, 16, 0.6) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #f5e6a3;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.15rem;
    color: #e8d4a0;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.subtitle {
    font-size: 0.95rem;
    color: #c4a265;
    letter-spacing: 0.05em;
}

.hero-stars {
    margin-top: 1.25rem;
    font-size: 1.25rem;
    color: #c9a84c;
    letter-spacing: 0.3em;
}

/* About */
.about {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    background: linear-gradient(180deg, #2a1010 0%, #1a0a0a 100%);
}

.about p {
    margin-bottom: 1rem;
    color: #d4c4b0;
    font-size: 0.975rem;
    line-height: 1.75;
}

.about p:last-child {
    margin-bottom: 0;
}

/* Performers */
.performers {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3rem;
    background: #1a0a0a;
}

.performers h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #f5e6a3;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.02em;
}

.performer-list {
    list-style: none;
    max-width: 480px;
    margin: 0 auto;
}

.performer-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: background 0.2s;
}

.performer-list li:hover {
    background: rgba(201, 168, 76, 0.05);
}

.performer-list li:last-child {
    border-bottom: none;
}

.performer-name {
    font-weight: 500;
    color: #e8d8c0;
    font-size: 0.975rem;
}

.performer-years {
    font-size: 0.8rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.performer-years a {
    color: #c9a84c;
    text-decoration: none;
    transition: color 0.2s;
}

.performer-years a:hover {
    color: #f5e6a3;
    text-decoration: underline;
}

.performers-more {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: #8a7a60;
    font-style: italic;
}

/* Archive */
.archive {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem 3.5rem;
    background: linear-gradient(180deg, #1a0a0a 0%, #0f0505 100%);
}

.archive h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #f5e6a3;
    margin-bottom: 0.75rem;
    text-align: center;
}

.archive-note {
    text-align: center;
    font-size: 0.9rem;
    color: #8a7a60;
    margin-bottom: 2rem;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.archive-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #2a1515 0%, #1f0e0e 100%);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.archive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.archive-card:hover {
    border-color: #c9a84c;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15), inset 0 0 30px rgba(201, 168, 76, 0.03);
    transform: translateY(-2px);
}

.archive-card:hover::before {
    opacity: 1;
}

.card-year {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #c9a84c;
    margin-bottom: 0.25rem;
}

.card-label {
    font-size: 0.85rem;
    color: #8a7a60;
    margin-bottom: 0.75rem;
}

.card-link {
    font-size: 0.85rem;
    color: #c9a84c;
    font-weight: 500;
    transition: color 0.2s;
}

.archive-card:hover .card-link {
    color: #f5e6a3;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    font-size: 0.85rem;
    color: #6a5a40;
    background: #0f0505;
}

footer a {
    color: #c9a84c;
    text-decoration: none;
}

footer a:hover {
    color: #f5e6a3;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem 2.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-logo {
        width: 90px;
    }

    .tagline {
        font-size: 1rem;
    }

    .archive-grid {
        grid-template-columns: 1fr;
    }

    .about,
    .performers,
    .archive {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
