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

body {
    font-family: 'Fraunces', serif;
    background:
        linear-gradient(135deg, rgba(45, 58, 46, 0.95) 0%, rgba(26, 35, 28, 0.95) 100%),
        url('illustration.png');
    background-size: auto, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    background-attachment: fixed, fixed;
    color: #e8e4d8;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Marquee */
.marquee-container {
    background: linear-gradient(90deg, #ff0080, #ff8c00, #ffff00, #00ff00, #00ffff, #0080ff, #8000ff);
    background-size: 200% 100%;
    animation: rainbow 1.5s linear infinite;
    border-top: 4px solid #ffff00;
    border-bottom: 4px solid #ff00ff;
    padding: 1rem 0;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.marquee-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 900;
    font-style: italic;
    white-space: nowrap;
    text-shadow:
        4px 4px 0 #000000,
        -2px -2px 0 #000000,
        2px -2px 0 #000000,
        -2px 2px 0 #000000,
        0 0 15px #ff00ff,
        0 0 30px #ff00ff,
        0 0 45px #ff00ff;
    letter-spacing: 0.1em;
}

.marquee-link:hover {
    color: #ffff00;
    text-shadow:
        3px 3px 0 #000000,
        -1px -1px 0 #000000,
        1px -1px 0 #000000,
        -1px 1px 0 #000000,
        0 0 15px #00ff00,
        0 0 30px #00ff00,
        0 0 45px #00ff00;
}

@keyframes rainbow {
    0% { background-position: 200% 50%; }
    100% { background-position: 0% 50%; }
}

/* Explosion Effect */
.explosion-particle {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: explode 1s ease-out forwards;
    box-shadow: 0 0 10px currentColor;
}

@keyframes explode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* Header */
header {
    text-align: center;
    padding: 3rem 1rem 2rem;
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 500px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.band-name {
    font-size: 4rem;
    font-weight: 300;
    font-style: italic;
    color: #a8c9a0;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

/* Main Content */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 2rem 0 3rem;
    border-bottom: 3px solid #4a6741;
    margin-bottom: 3rem;
}

.album-title {
    font-size: 3rem;
    font-weight: 700;
    font-style: normal;
    color: #e8e4d8;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: #a8c9a0;
    font-weight: 300;
}

/* TV Section */
.tv-section {
    text-align: center;
    margin: 1rem 0 3rem;
    padding: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.arch-logo {
    display: block;
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 0 auto 2rem;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.3));
}

.tv-container {
    position: relative;
    display: inline-block;
    width: 56vw;
    max-width: 840px;
}

.tv-frame {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(8px 8px 12px rgba(0, 0, 0, 0.3));
    z-index: 2;
    pointer-events: none;
}

.tv-screen {
    position: absolute;
    top: 14%;
    left: 10%;
    width: 56%;
    height: 56%;
    object-fit: cover;
    border-radius: 8px;
    filter: brightness(0.95) contrast(1.1);
    z-index: 1;
}

.unmute-btn {
    position: absolute;
    top: 42%;
    left: 38%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 3;
    border-radius: 50%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.unmute-btn svg {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.unmute-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.unmute-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.unmute-btn:hover svg {
    opacity: 1;
}

.unmute-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
}

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

.info-box {
    background: rgba(74, 103, 65, 0.3);
    border: 2px solid #6b8565;
    padding: 1.5rem;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
}

.info-box h3 {
    font-size: 1.5rem;
    font-style: italic;
    color: #a8c9a0;
    margin-bottom: 1rem;
    border-bottom: 1px solid #6b8565;
    padding-bottom: 0.5rem;
}

.info-box p {
    font-weight: 300;
    line-height: 1.8;
}

.links {
    list-style: none;
}

.links li {
    margin-bottom: 0.5rem;
}

.links a {
    color: #a8c9a0;
    text-decoration: none;
    font-style: italic;
    transition: all 0.2s;
    display: inline-block;
}

.links a:hover {
    color: #c9e4c1;
    transform: translateX(5px);
    text-decoration: underline;
}

.links a::before {
    content: "→ ";
    margin-right: 0.5rem;
}

/* Shows Section */
.shows {
    background: rgba(74, 103, 65, 0.3);
    border: 3px double #6b8565;
    padding: 2rem;
    margin-bottom: 2rem;
}

.shows h3 {
    font-size: 2rem;
    font-style: italic;
    color: #a8c9a0;
    margin-bottom: 1rem;
    text-align: center;
}

.no-shows {
    text-align: center;
    font-style: italic;
    color: #8ba583;
    padding: 1rem;
}

/* Flyer Section */
.flyer-section {
    text-align: center;
    margin: 4rem 0;
    padding: 2rem 0;
}

.flyer-container {
    position: relative;
    display: inline-block;
    max-width: 420px;
    width: 63%;
    transform: rotate(-1.5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.flyer-container:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    filter: brightness(1.1) saturate(1.2);
}

.flyer {
    width: 100%;
    height: auto;
    display: block;
}

/* Tape effect - top left */
.flyer-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 15%;
    width: 80px;
    height: 30px;
    background: rgba(255, 248, 220, 0.75);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: rotate(-5deg);
    z-index: 10;
}

/* Tape effect - top right */
.flyer-container::after {
    content: '';
    position: absolute;
    top: -10px;
    right: 15%;
    width: 80px;
    height: 30px;
    background: rgba(255, 248, 220, 0.75);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: rotate(5deg);
    z-index: 10;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(26, 35, 28, 0.5);
    border-top: 2px solid #6b8565;
    position: relative;
    z-index: 1;
}

footer p {
    font-size: 0.9rem;
    color: #8ba583;
}

footer a {
    color: #a8c9a0;
    text-decoration: none;
    font-style: italic;
}

footer a:hover {
    text-decoration: underline;
}

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

    .album-title {
        font-size: 2rem;
    }

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

    .logo {
        max-width: 400px;
    }

    .tv-container {
        width: 90%;
        max-width: 600px;
    }

    .flyer-container {
        max-width: 400px;
        width: 95%;
    }

    .flyer-container::before,
    .flyer-container::after {
        width: 60px;
        height: 25px;
    }
}

/* 90s Internet Culture Easter Eggs */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.info-box:hover {
    animation: pulse 2s ease-in-out;
}
