/* === Hellblade: Senua's Sacrifice - Dark Celtic/Norse Theme === */
/* Color Palette: Deep blacks, blood crimson, ash gray, ember orange */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #0a0808 0%, #1a1214 50%, #0d0a0b 100%);
    color: #c8c0b8;
    min-height: 100vh;
    line-height: 1.6;
}

/* --- Intro Section --- */
.intro-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.main-character-title {
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #8a3030;
    margin-bottom: 10px;
}

.game-title {
    font-size: 2.5em;
    background: linear-gradient(90deg, #c84040, #8a3030);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.character-name {
    font-size: 4em;
    color: #e8e0d8;
    text-shadow: 0 0 40px rgba(200, 64, 64, 0.3);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.tag-line {
    font-size: 1.2em;
    font-style: italic;
    color: #a05050;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.brief-description {
    font-size: 1.1em;
    color: #a8a098;
    line-height: 1.8;
    border-left: 3px solid #8a3030;
    padding-left: 20px;
}

.intro-image-card {
    flex: 0 0 400px;
}

.intro-image-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 2px solid rgba(138, 48, 48, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(138, 48, 48, 0.2);
}

/* --- Card Sections (Row-wise Layout) --- */
.card-section {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 40px;
}

.section-title {
    font-size: 1.8em;
    color: #c84040;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(138, 48, 48, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Flexbox Row Layout */
.card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.card {
    flex: 1 1 300px;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(138, 48, 48, 0.15);
    background: rgba(15, 10, 12, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 48, 48, 0.2);
}

/* Card Variants - Dark Celtic Theme */
.bg-dark {
    background: linear-gradient(135deg, rgba(18, 12, 14, 0.95) 0%, rgba(10, 8, 8, 0.98) 100%);
}

.bg-crimson {
    background: linear-gradient(135deg, rgba(90, 30, 30, 0.3) 0%, rgba(15, 10, 12, 0.95) 100%);
    border-top: 2px solid rgba(200, 64, 64, 0.5);
}

.bg-gradient {
    background: linear-gradient(135deg, rgba(60, 40, 30, 0.3) 0%, rgba(12, 10, 10, 0.95) 100%);
    border-top: 2px solid rgba(200, 120, 60, 0.4);
}

.voice-card {
    background: linear-gradient(to bottom right, rgba(25, 18, 20, 0.95), rgba(12, 8, 10, 0.98));
    border-left: 4px solid #8a3030;
    flex: 1 1 220px;
}

.summary-card {
    background: linear-gradient(135deg, rgba(138, 48, 48, 0.1) 0%, rgba(10, 8, 8, 0.95) 100%);
    border: 1px solid rgba(138, 48, 48, 0.25);
    flex: 1 1 400px;
}

/* Typography inside cards */
h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #d06060, #a04040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 2px solid rgba(138, 48, 48, 0.25);
    padding-bottom: 10px;
    letter-spacing: 1px;
}

h4 {
    font-size: 1.25em;
    margin-bottom: 12px;
    color: #c86060;
}

.card p {
    margin-bottom: 15px;
    text-align: left;
    font-size: 1em;
    color: #b8b0a8;
    line-height: 1.75;
}

.card b {
    color: #c86060;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.card ul {
    margin-left: 10px;
    list-style: none;
}

.card ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.95em;
    color: #a8a098;
}

.card ul li::before {
    content: "†";
    color: #8a3030;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}

.note {
    font-size: 0.88em;
    font-style: italic;
    color: #908880;
    display: block;
    margin-top: 12px;
    line-height: 1.6;
}

/* --- Quote Section --- */
.quote-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.quote-section blockquote {
    font-size: 1.8em;
    font-style: italic;
    color: #c86060;
    padding: 50px 60px;
    position: relative;
    line-height: 1.6;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.quote-section blockquote::before {
    content: '"';
    font-size: 5em;
    color: rgba(138, 48, 48, 0.3);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.quote-section cite {
    display: block;
    margin-top: 25px;
    font-size: 0.6em;
    color: #a05050;
    font-style: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Gallery --- */
.gallery {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 2px solid rgba(138, 48, 48, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(138, 48, 48, 0.3);
    border-color: rgba(200, 64, 64, 0.5);
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .intro-container {
        flex-direction: column;
        text-align: center;
    }

    .brief-description {
        border-left: none;
        border-top: 3px solid #8a3030;
        padding-left: 0;
        padding-top: 20px;
    }

    .intro-image-card {
        flex: 0 0 auto;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .character-name {
        font-size: 2.5em;
    }

    .card {
        flex: 1 1 100%;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .quote-section blockquote {
        font-size: 1.3em;
        padding: 30px;
    }
}
