/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Saira Condensed', sans-serif;
    background-color: #1D2124;
    color: #E8E8E8;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== CANVAS BACKGROUND ===== */
#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* ===== SHARED CONTAINER ===== */
.container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
    min-height: 100vh;
}

/* ===== MAIN PAGE: CENTERED LAYOUT ===== */
body.main-page .container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ===== PRESS PAGE: CENTERED LAYOUT ===== */
body.press-page .container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== HERO SECTION (Main Page) ===== */
.hero {
    text-align: center;
    margin-bottom: 80px;
}

.band-name {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 
        0 0 10px #EA0F0F,
        0 0 20px #EA0F0F,
        0 0 30px #EA0F0F,
        0 0 40px #A8011B,
        0 0 70px #A8011B,
        0 0 80px #A8011B,
        0 0 100px #A8011B;
}

.tagline {
    display: none;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #E8E8E8;
    text-transform: uppercase;
}

/* ===== LINKS SECTIONS (Main Page) ===== */
.links-section {
    width: 100%;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #E8E8E8;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    text-shadow: 
        0 0 5px #EA0F0F,
        0 0 10px #A8011B;
}

.section-title::before,
.section-title::after {
    content: '────';
    color: #666;
    margin: 0 20px;
    font-weight: 400;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.link-item {
    display: inline-block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    padding: 15px 40px;
    border: 2px solid #EA0F0F;
    background-color: rgba(29, 33, 36, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 
        0 0 5px #EA0F0F,
        0 0 10px #A8011B;
    box-shadow: 
        0 0 10px rgba(234, 15, 15, 0.5),
        inset 0 0 10px rgba(234, 15, 15, 0.2);
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #EA0F0F;
    transition: left 0.3s ease;
    z-index: -1;
}

.link-item:hover {
    color: #FFFFFF;
    border-color: #EA0F0F;
    background-color: rgba(234, 15, 15, 0.2);
    text-shadow: 
        0 0 10px #EA0F0F,
        0 0 20px #EA0F0F,
        0 0 30px #A8011B;
    box-shadow: 
        0 0 20px rgba(234, 15, 15, 0.8),
        0 0 40px rgba(234, 15, 15, 0.5),
        inset 0 0 20px rgba(234, 15, 15, 0.3);
}

.link-item:hover::before {
    left: 0;
}

.link-item:active {
    transform: scale(0.98);
}

/* ===== PAGE HEADER (Privacy & Press Pages) ===== */
.page-header {
    margin-bottom: 60px;
}

body.press-page .page-header {
    position: absolute;
    top: 40px;
    left: 30px;
    margin-bottom: 0;
}

.back-link {
    display: inline-block;
    color: #A8011B;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

body.press-page .back-link {
    margin-bottom: 0;
}

.back-link:hover {
    color: #EA0F0F;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #7E0722;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 1rem;
    color: #4E1B23;
    font-weight: 400;
}

/* ===== CONTENT AREA (Privacy Page) ===== */
.content {
    background-color: rgba(29, 33, 36, 0.6);
    padding: 40px;
    border-left: 4px solid #7E0722;
}

body.press-page .content {
    background-color: transparent;
    padding: 0;
    border-left: none;
    text-align: center;
}

.content section {
    margin-bottom: 40px;
}

.content section:last-child {
    margin-bottom: 0;
}

.content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #7E0722;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.content h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #A8011B;
    margin-top: 20px;
    margin-bottom: 15px;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #E8E8E8;
}

.content ul {
    list-style: none;
    margin: 15px 0;
    padding-left: 0;
}

.content ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.content ul li::before {
    content: '▸';
    color: #A8011B;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.content a {
    color: #A8011B;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content a:hover {
    color: #EA0F0F;
}

/* ===== PRESS PAGE CONTENT STYLES ===== */
body.press-page .content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    color: #7E0722;
    text-transform: uppercase;
    margin-bottom: 20px;
}

body.press-page .subtitle {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #4E1B23;
    text-transform: uppercase;
    margin-bottom: 30px;
}

body.press-page .description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    color: #E8E8E8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
    margin-top: auto;
    padding-top: 40px;
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.page-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #4E1B23;
    text-align: center;
}

.footer-link {
    font-size: 0.9rem;
    color: #999;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

body.privacy-page .footer-link,
body.press-page .footer-link {
    font-size: 1rem;
    color: #A8011B;
    font-weight: 700;
}

.footer-link:hover {
    color: #EA0F0F;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }
    
    .hero {
        margin-bottom: 60px;
    }
    
    .links-section {
        margin-bottom: 50px;
    }
    
    .section-title::before,
    .section-title::after {
        content: '──';
        margin: 0 10px;
    }
    
    .link-item {
        padding: 12px 30px;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .page-header {
        margin-bottom: 40px;
    }
    
    body.press-page .page-header {
        top: 30px;
        left: 20px;
    }
    
    .content {
        padding: 30px 20px;
    }
    
    body.press-page .content {
        padding: 0;
    }
    
    .content h2 {
        margin-bottom: 15px;
    }
    
    .content p,
    .content ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title::before,
    .section-title::after {
        display: none;
    }
    
    .content {
        padding: 20px 15px;
    }
    
    .content ul li {
        padding-left: 20px;
    }
}
