/* 
    DunHero Press Kit - Redesigned Stylesheet
*/

/* 1. Global Styles & Variables */
:root {
    --primary-color: #ffc400; /* A vibrant gold/yellow for accents */
    --background-color: #121212; /* A very dark grey, not pure black */
    --surface-color: #1e1e1e; /* A slightly lighter grey for cards/sections */
    --text-color: #e0e0e0; /* A soft white for body text */
    --heading-color: #ffffff; /* Pure white for headings */
    --border-color: #2c2c2c; /* Subtle borders */
    --shadow-color: rgba(0, 0, 0, 0.5);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 2rem 1rem;
}

/* 2. Layout */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 24px var(--shadow-color);
}

/* 3. Typography */
h1, h2, h3 {
    color: var(--heading-color);
    font-weight: 900;
    line-height: 1.2;
    margin-top: 0;
}

h1 {
    font-size: 3rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(255, 196, 0, 0.3);
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--heading-color);
    text-decoration: underline;
}

strong {
    color: var(--heading-color);
    font-weight: 700;
}

/* 4. Header & Logo */
header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    max-width: 450px;
    margin-bottom: 1rem;
}

/* 5. Video Placeholder */
.video-placeholder {
    position: relative;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-color);
    margin-bottom: 2rem;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}
.video-placeholder:hover {
    border-color: var(--primary-color);
}
.video-placeholder img {
    width: 100%;
    display: block;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-placeholder:hover img {
    transform: scale(1.05);
}
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/YouTube_full-color_icon_%282017%29.svg/1280px-YouTube_full-color_icon_%282017%29.svg.png') no-repeat center center;
    background-size: contain;
    opacity: 0.9;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.video-placeholder:hover .play-icon {
    opacity: 1;
}

/* 6. Navigation & Info Sections */
.table-of-contents ul, .download ul {
    list-style: none;
    padding: 0;
}
.table-of-contents li, .download li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}
.table-of-contents li:last-child, .download li:last-child {
    border-bottom: none;
}
.game-links p {
    font-size: 1.1rem;
}

/* 7. Media Grid (Screenshots) */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.media-grid .screenshot-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow-color);
}
.media-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.media-grid img:hover {
    transform: scale(1.1);
}

/* 8. Footer */
footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    color: #888;
}