*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:#f1f1f1;
    font-family:'Oswald', sans-serif;
    overflow-x:hidden;
	
    /* CUSTOM CURSOR */
    cursor:url('pic/cursor.avif'), auto;
}

/* BACKGROUND EFFECT */

body::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:
    linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.95)),
    url("pic/background.avif");
    background-size:cover;
    background-position:center;
    z-index:-1;
}

/* HEADER */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px;
}

.hero-content{
    max-width:1000px;
    animation:fadeIn 2s ease;
}

.hero h1{
    font-family:'Metal Mania', cursive;
    font-size:6rem;
    color:#F58027;
    letter-spacing:5px;
    text-shadow:
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 40px #770000;
    margin-bottom:20px;
}

.hero h2{
    font-family:'Cinzel', serif;
    font-size:2rem;
    color:#cccccc;
    margin-bottom:25px;
    letter-spacing:3px;
}

.hero p{
    font-size:1.6rem;
    line-height:1.3;
    color:#dddddd;
    max-width:850px;
    margin:auto;
}

/* BUTTONS */

.hero-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-buttons a{
    text-decoration:none;
    padding:15px 35px;
    background:#8b0000;
    color:white;
    border-radius:40px;
    font-size:1.5rem;
    transition: background 0.4s, transform 0.4s, box-shadow 0.4s;
    border:2px solid #ff0000;
    letter-spacing:1px;
    display:inline-block;
    will-change: transform;
    background-clip: padding-box;
}

.hero-buttons a:hover{
    background:#ff0000;
    transform:scale(1.08);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px 2px rgba(255, 0, 0, 0.75);
}
/* SECTION STYLING */

section{
    padding:90px 8%;
}

.section-title{
    text-align:center;
    font-family:'Metal Mania', cursive;
    font-size:4.5rem;
    color:#ff2a2a;
    margin-bottom:60px;
    text-shadow:0 0 15px rgba(255,0,0,.8);
}

/* TIMELINE */

.timeline{
    position:relative;
    max-width:1200px;
    margin:auto;
}

.timeline::after{
    content:"";
    position:absolute;
    width:5px;
    background:#8b0000;
    top:0;
    bottom:0;
    left:50%;
    margin-left:-3px;
    box-shadow: none;
}

.timeline-box{
    padding:20px 50px;
    position:relative;
    width:50%;
}

.left{
    left:0;
}

.right{
    left:50%;
}

.timeline-content{
    background:rgba(20,20,20,.92);
    padding:30px;
    border-radius:20px;
    border:1px solid #660000;
    box-shadow: none;
    transition:.4s;
}

.timeline-content:hover{
    transform:translateY(-8px);
    box-shadow: none;
}

.timeline-content h3{
    color:#ff4444;
    font-size:2.5rem;
    margin-bottom:15px;
    font-family:'Metal Mania', cursive;
}

.timeline-content p{
    line-height:1.4;
    color:#cccccc;
    font-size:1.3rem;
}

/* GUITAR SECTION */

.guitar-section{
     background:
    linear-gradient(rgba(0,0,0,.9), rgba(0,0,0,.9)),
    url("pic/bg2.png");
} 
.guitar-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.guitar-card{
    background:#111;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    border:2px solid #330000;
    box-shadow: none;
}

.guitar-card:hover{
    transform:translateY(-10px);
    box-shadow: none;
}

.guitar-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.guitar-card h4{
    font-size:2rem;
    color:#ff4040;
    padding:20px 20px 10px;
    font-family:'Metal Mania', cursive;
}

.guitar-card p{
    padding:0 20px 25px;
    color:#bbbbbb;
    line-height:1.3;
    font-size:1.2rem;
}
/* BANDS */

.band-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.band-card{
    background:#111;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    border:2px solid #330000;
    box-shadow: none;
}

.band-card:hover{
    transform:scale(1.03);
    box-shadow: none;
}

.band-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.band-info{
    padding:25px;
}

.band-info h3{
    color:#ff3030;
    font-size:2rem;
    margin-bottom:15px;
    font-family:'Metal Mania', cursive;
}

.band-info p{
    color:#cccccc;
    line-height:1.3;
    font-size:1.2rem;
}

/* RADIO */

.radio-section{
    background:
    linear-gradient(rgba(0,0,0,.9), rgba(0,0,0,.9)),
    url("pic/bg2.png");
    background-size: cover;
    background-attachment: fixed;
    background-position:center;
    text-align:center;
    font-size: 18px;
}

.radio-box{
    max-width:850px;
    margin:auto;
    background:rgba(10,10,10,.9);
    border:2px solid #8b0000;
    border-radius:25px;
    padding:50px;
    box-shadow: none;
}

.radio-box h2{
    font-family:'Metal Mania', cursive;
    color:#ff2b2b;
    font-size:4rem;
    margin-bottom:20px;
}

.radio-box p{
    color:#dddddd;
    line-height:1.1;
    font-size:1.7rem;
    margin-bottom:30px;
}

/* ⚡ NEW PULSING ROUND INDICATOR CLASS */
.live-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    animation: pulseLiveDot 1.6s infinite ease-in-out;
}

@keyframes pulseLiveDot {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.8);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 12px rgba(255, 0, 0, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.radio-player{
    margin-top:25px;
}

audio{
    width:100%;
    filter:invert(1);
}
/* FOOTER */

footer{
    padding:50px 20px;
    text-align:center;
    background:#000;
    border-top:2px solid #8b0000;
}

footer h2{
    font-family:'Metal Mania', cursive;
    font-size:2.5rem;
    color:#ff1e1e;
    margin-bottom:20px;
}

footer p{
    color:#999;
    line-height:1.8;
    max-width:700px;
    margin:auto;
}

/* ANIMATION */

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width:900px){

    .hero h1{
        font-size:4rem;
    }

    .hero h2{
        font-size:1.5rem;
    }

    .timeline::after{
        left:31px;
    }

    .timeline-box{
        width:100%;
        padding-left:70px;
        padding-right:25px;
    }

    .right{
        left:0;
    }
}

@media(max-width:600px){

    .hero h1{
        font-size:3rem;
    }

    .section-title{
        font-size:2.5rem;
    }

    .radio-box h2{
        font-size:2.5rem;
    }
}

@media(max-width:600px){
    .hero h1{
        font-size:2.8rem;
    }
}

.footer-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}
.footer-blurb {
    font-size: 1.4rem;
}

/* ========================================================== */
/* LEFT-SIDE ANNOUNCEMENT POPBOX LAYOUT                     */
/* ========================================================== */
.top-left-popup {
    display: none; 
    position: fixed;
    top: 192px;    
    left: 192px;   
    right: auto;  
    bottom: auto; 
    background-color: #1a1a1a;
    border: 3px solid #ff3333; 
    color: #ffffff;
    padding: 25px;
    border-radius: 4px;
    max-width: 350px;
    box-shadow: none;
    z-index: 99999;
}

/* ========================================================== */
/* NEW RIGHT-SIDE ANNOUNCEMENT POPBOX LAYOUT                */
/* ========================================================== */
.top-right-popup {
    display: none; 
    position: fixed;
    top: 192px;    
    right: 192px;  
    left: auto;  
    bottom: auto; 
    background-color: #1a1a1a;
    border: 3px solid #ff3333; 
    color: #ffffff;
    padding: 25px;
    border-radius: 4px;
    max-width: 350px;
    box-shadow: none;
    z-index: 99999;
}

/* SHARED FONTS FOR BOTH POPUPS */
.top-left-popup h2, .top-right-popup h2 {
    font-family: 'Metal Mania', cursive, sans-serif;
    margin-top: 0;
    font-size: 30px; 
    font-weight: bold;
    color: #ff3333;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.top-left-popup p, .top-right-popup p {
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 16px;
    font-weight: 900; 
    letter-spacing: 0.5px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 0;
}

.top-left-popup .close-btn, .top-right-popup .close-btn {
    position: absolute;
    top: 5px;
    right: 12px;
    background: none;
    border: none;
    color: #ff3333;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    font-family: Arial, sans-serif;
}
.top-left-popup .close-btn:hover, .top-right-popup .close-btn:hover { color: #fff; }
/* ==========================================================================
   ⚡ SIMPLIFIED SPLASH INTRO PAGE STYLING (NO AUTOMATIC PULSE)
   ========================================================================== */
:root {
    --metal-red: #cc0000;
    --metal-gold: #AD2105;
    --metal-dark: #050505;
}

/* Base properties for the intro page content elements */
.background {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.75)),
        url('pic/bg3.avif') center center/cover no-repeat;
    z-index: -2;
}

.background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,.03) 2px,
            rgba(255,255,255,.03) 4px
        );
    animation: splash-scan 8s linear infinite;
}

@keyframes splash-scan {
    from { transform: translateX(-50px); }
    to { transform: translateX(50px); }
}

.splash-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.splash-container .content {
    max-width: 900px;
    animation: fadeIn 2s ease;
}

.logo {
    font-size: clamp(3rem, 10vw, 8rem);
    color: var(--metal-gold);
    text-shadow:
        0 0 10px #ffcc00,
        0 0 20px #ff9900,
        0 0 40px #cc0000;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-family: 'Metal Mania', cursive, sans-serif; /* Restored Font */
}

.subtitle {
    font-size: clamp(1rem, 3vw, 2rem);
    color: #ddd;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-family: 'Oswald', sans-serif;
}

.tagline {
    font-size: clamp(1.5rem, 2vw, 1.3rem);
    color: #bbb;
    margin-bottom: 50px;
    line-height: 1.6;
    font-family: 'Oswald', sans-serif;
}

.divider {
    width: 250px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--metal-gold), transparent);
    margin: 25px auto;
}

.splash-container .footer {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #888;
    font-size: .9rem;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
}

/* ⚡ CLEAN, NO-PULSE ENTRY BUTTON WITH STRICT MOUSE HOVER ONLY */
.enter-btn {
    display: inline-block;
    position: relative;
    padding: 18px 50px;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    text-decoration: none;
    color: #fff;
    border: 3px solid #cc0000;
    border-radius: 40px;
    background: linear-gradient(135deg, #660000, #cc0000, #330000);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Metal Mania', cursive, sans-serif; /* Restored Font */
    
    /* Layer clipping layers to shut down browser rendering bugs */
    will-change: transform;
    background-clip: padding-box;
    z-index: 0;
    box-shadow: none; /* No shadow by default when sitting idle */
}

/* ⚡ HOVER ANIMATION ONLY - Sleek, perfect circle red glow */
.enter-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px 4px rgba(255, 0, 0, 0.85); 
}

@media (max-width: 768px) {
    .tagline {
        padding: 0 10px;
    }
    .enter-btn {
        width: 100%;
        max-width: 320px;
    }
}
