body {
/*    background: linear-gradient(135deg, #0f0a10 0%, #3a0035 100%); */
    background: url('cyannalanebg.png') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Arial', sans-serif;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.header {
    padding: 20px;
    animation: fadeIn 2s ease-in-out;
}

h1 {
    font-size: 4em;
    margin-bottom: 5px;
    letter-spacing: 5px;
    text-shadow: 0 0 10px #FDBD01; /* Warm glow */
    filter: drop-shadow(0 0 5px black);
}

h2 {
    font-size: 1.5em;
    font-weight: 300;
    color: #FFBF00; /* Lighter pink for contrast */
    filter: drop-shadow(0 0 5px black);
    text-shadow: 0 0 5px #FFFFFF;
    margin-bottom: -1%;
}

.content {
    margin: 40px 20px;
    padding: 30px;
    border: 2px solid #FDBD01;
    box-shadow: 0 0 25px #FDBD01;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.4);
}

.artist-content img {
   box-shadow: 0 0 25px #FDBD01;
   filter: drop-shadow(0 0 20px black);
   margin-bottom: -5%;
}

.tagline {
    font-style: italic;
    margin-bottom: 20px;
    color: #FFBF00;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FDBD01;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 15px;
    letter-spacing: 1px;
}

.button:hover {
    background-color: #FFBF00;
    transform: scale(1.05);
}

.release-date {
    margin-top: 30px;
    font-size: 1.2em;
    color: #FFBF00;
}

.footer {
    clear: both;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #9E2B88;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.qa-blog-section {
    padding: 50pxcf8 20px ;
    margin-top: 50px ;
    width: 100% ;
    max-width: 900px ;
}

.traffic-ticker{
    border-color: #FDBD01;
    background: rgba(232, 77, 114, 0.1);
    color: #FDBD01;
    margin: 20px  auto;
    padding: 10px ;
    border: 1px  solid;
    font-weight: bold;
    font-size: 1.1em ;
}

.question-block{
    margin-bottom: 30px ;
    padding: 15px ;
    border-left: 5px  solid;
    text-align: left;
}

.question-block h3{
    margin-top: 0 ;
    font-size: 1.5em ;
}

/* 🧬 VANGUARD_GLASSMOPHISM_UPGRADE */
.artist-card {
    background: rgba(0, 0, 0, 0.45); /* Darker base for better contrast */
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: 4px; /* Clinical, sharp corners or very slight radius */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    padding: 2rem;
    max-width: 500px;
}

/* 🎙️ TYPOGRAPHY_ALIGNMENT */
h1.artist-name {
    font-family: 'Serif', Georgia, serif; /* Matching the CD cover authority */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3); /* Subtle Amber glow */
}

/* 🔓 THE_SOVEREIGN_CTA_PULSE */
.listen-button {
    background: linear-gradient(90deg, #FFB800 0%, #00FFDD 100%); /* Amber to Cyan Transition */
    border: none;
    color: #000;
    font-family: 'Monospace', monospace;
    font-weight: 900;
    letter-spacing: 1px;
    transition: all 0.3s ease;
 /*   box-shadow: 0 0 20px rgba(0, 255, 221, 0.2);  */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Adds weight to the text on the gradient */
    box-shadow: 0 0 20px rgba(0, 255, 221, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
    /* The 'inset' creates a subtle glass edge inside the button */
}

.listen-button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 255, 221, 0.5);
    cursor: pointer;
}
