.goth_analysis_page {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto 50px auto;
    padding: 20px 3%;
    box-sizing: border-box;
}

.goth_analysis_content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

/* Band Photo Header Section */
.band_photo_header {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.goth_analysis_band_photo {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goth_analysis_band_photo:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.band_photo_placeholder {
    width: 300px;
    height: 200px;
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.9), rgba(35, 35, 35, 0.9));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 1.1rem;
    font-family: 'EBGaramond-VariableFont_wght', serif;
}

/* Header Section */
.goth_analysis_header {
    text-align: center;
}

.goth_analysis_header h1 {
    font-family: 'NewRocker-Regular', serif;
    font-size: 2.2rem;
    color: var(--main-text-color);
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 600px) {
    .goth_analysis_header h1 {
        font-size: 1.8rem;
    }
}

/* Main Content Section */
.goth_analysis_main {
    width: 100%;
    max-width: 800px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    margin: 0 auto;
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

/* Assessment Section */
.goth_assessment {
    text-align: center;
    margin-bottom: 30px;
}

.overall_message {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--main-text-color);
    font-family: 'EBGaramond-VariableFont_wght', serif;
    margin: 0;
    padding: 20px;
    background: linear-gradient(145deg, rgba(60, 60, 60, 0.3), rgba(40, 40, 40, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Similar Artists Text */
.similar_artists_text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(249, 249, 249, 0.9);
    text-align: center;
    margin: 25px 0;
    padding: 15px;
    background: rgba(40, 40, 40, 0.4);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.similar_artist_link {
    color: var(--goth-accent, #b48aff);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.similar_artist_link:hover {
    color: var(--goth-accent-dark, #885dd2);
    text-decoration: underline;
}

/* Band Info and Link Section */
.band_info_and_link {
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(249, 249, 249, 0.85);
    text-align: center;
    margin: 20px 0 0 0;
    padding: 15px;
    background: rgba(30, 30, 30, 0.4);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.band_page_link {
    color: var(--goth-accent, #b48aff);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.band_page_link:hover {
    color: var(--goth-accent-dark, #885dd2);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .goth_analysis_page {
        padding: 15px 2%;
    }
    
    .goth_analysis_content {
        gap: 20px;
        width: 100%;
    }
    
    .goth_analysis_main {
        padding: 20px;
        width: 100%;
    }
    
    .goth_analysis_band_photo {
        max-width: 250px;
        max-height: 250px;
        width: 90vw;
        height: auto;
    }
    
    .band_photo_placeholder {
        width: 250px;
        max-width: 90vw;
        height: 170px;
        font-size: 1rem;
    }
    
    .overall_message {
        font-size: 1.15rem;
        padding: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .similar_artists_text,
    .band_info_and_link {
        font-size: 1rem;
        padding: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .goth_analysis_page {
        padding: 10px 1%;
    }
    
    .goth_analysis_band_photo {
        max-width: 200px;
        max-height: 200px;
        width: 85vw;
        height: auto;
    }
    
    .band_photo_placeholder {
        width: 200px;
        max-width: 85vw;
        height: 140px;
        font-size: 0.9rem;
    }
    
    .goth_analysis_header h1 {
        font-size: 1.6rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .overall_message {
        font-size: 1.1rem;
        padding: 12px;
    }
    
    .similar_artists_text,
    .band_info_and_link {
        font-size: 0.95rem;
        padding: 10px;
    }
    
    .goth_analysis_main {
        padding: 15px;
    }
}

/* Animation for smooth content loading */
.goth_analysis_content > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.band_photo_header {
    animation-delay: 0.1s;
}

.goth_analysis_header {
    animation-delay: 0.2s;
}

.goth_analysis_main {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .goth_analysis_main {
        border-color: rgba(255, 255, 255, 0.3);
        background: rgba(0, 0, 0, 0.8);
    }
    
    .overall_message {
        background: rgba(20, 20, 20, 0.9);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .similar_artists_text,
    .band_info_and_link {
        background: rgba(15, 15, 15, 0.8);
        border-color: rgba(255, 255, 255, 0.15);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .goth_analysis_band_photo,
    .goth_analysis_content > * {
        animation: none;
        transition: none;
    }
    
    .goth_analysis_band_photo:hover {
        transform: none;
    }
}