@import url('https://fonts.googleapis.com/css2?family=Almendra+Display&family=Cinzel:wght@400;700&family=Courier+Prime&display=swap');

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --dim-color: #888888;
    --gothic-font: 'Almendra Display', serif; 
    --serif-font: 'Cinzel', serif;
    --mono-font: 'Courier Prime', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--serif-font);
    display: flex;
    justify-content: center;
    /* Поднимаем контент выше */
    align-items: flex-start; 
    min-height: 100vh;
    padding-top: 5vh; 
    overflow: hidden;
}

.cassette-layout {
    display: flex;
    /* Уменьшенный размер для компактности */
    width: 960px; 
    height: 600px;
}

.panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.left-flap {
    width: 40%;
    padding: 20px 40px;
    text-align: center;
}

.band-logo {
    font-family: var(--gothic-font);
    font-size: 3.5rem; 
    letter-spacing: 4px; 
    margin-bottom: 25px;
    text-transform: uppercase;
}

.bio-section {
    font-family: var(--mono-font);
    font-size: 0.95rem;
    color: #aaaaaa;
    max-width: 280px;
    line-height: 1.5;
}

.bracket-title {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.spine {
    width: 8%;
    font-family: var(--gothic-font);
    font-size: 2rem;
    letter-spacing: 8px;
}

.spine-text {
    transform: rotate(90deg);
    white-space: nowrap;
    color: var(--dim-color);
}

.main-cover {
    width: 52%;
    padding: 30px;
}

.gothic-frame {
    width: 100%;
    height: 100%;
    padding: 20px;
    position: relative;
}

.gothic-frame::before, .gothic-frame::after {
    content: "‡";
    position: absolute;
    background: #000;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}
.gothic-frame::before { top: -15px; left: -15px; }
.gothic-frame::after { bottom: -15px; right: -15px; }

.frame-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    text-align: center;
}

.crest {
    font-size: 2rem;
    letter-spacing: 10px;
}

.content-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-container {
    width: 100%;
}

.video-player {
    width: 280px;
    height: calc(280px * 9 / 16);
    object-fit: cover;
    border: none;
    outline: none;
}

.content-block h3 {
    font-family: var(--serif-font);
    font-size: 1rem;
    letter-spacing: 5px;
    color: #ffffff;
    margin-bottom: 10px;
}

.links-list {
    list-style: none;
}

.links-list li {
    margin-bottom: 8px;
}

.links-list a {
    font-family: var(--mono-font);
    font-size: 0.9rem;
    color: var(--dim-color);
    text-decoration: none;
    transition: 0.3s;
}

.links-list a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #fff;
}

.crypto-list span {
    display: block;
    font-family: var(--mono-font);
    font-size: 0.85rem;
    color: #ffffff;
    margin-bottom: 6px;
    cursor: pointer;
}

#discord-status {
    font-family: var(--mono-font);
    font-size: 0.9rem;
    color: #ffffff;
}

.branding {
    font-family: var(--serif-font);
    font-size: 0.75rem;
    letter-spacing: 8px;
    color: #555555;
    text-transform: uppercase;
}

#copy-popup {
    position: fixed;
    bottom: 30px;
    background: #ffffff;
    color: #000000;
    padding: 8px 16px;
    font-family: var(--mono-font);
    font-weight: bold;
    font-size: 0.9rem;
    display: none;
    z-index: 1000;
}