:root {
    --bg: #1a1a1a;
    --text: #e8e8e8;
    --accent: #c9a227;
    --dim: #666;
}

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

body {
    font-family: 'Georgia', serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    padding: 1rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid #333;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.chapter {
    display: block;
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
}

.scene {
    margin-bottom: 3rem;
}

.scene-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.text p {
    margin-bottom: 1.2rem;
    text-align: justify;
    hyphens: auto;
}

.intimate {
    border-left: 2px solid var(--accent);
    padding-left: 1.5rem;
    margin-left: -1.5rem;
}

.video-container {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

video {
    width: 100%;
    display: block;
}

.ending {
    border-bottom: 1px solid #333;
    padding-bottom: 2rem;
}

.chapter-end {
    text-align: center;
    padding: 3rem 0;
    color: var(--dim);
}

.chapter-end p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.hint {
    font-size: 0.9rem;
    font-style: italic;
}

/* Navigation */
.chapter-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.chapter-nav a {
    color: var(--accent);
    text-decoration: none;
}

.chapter-nav a:hover {
    text-decoration: underline;
}

.chapter-title {
    color: var(--dim);
    font-style: italic;
}

.next-link.disabled {
    color: var(--dim);
    opacity: 0.5;
}

/* Home Page */
.home-header {
    text-align: center;
    padding: 3rem 0;
}

.home-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--dim);
    font-style: italic;
}

.chapter-card {
    background: #252525;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent);
}

.chapter-label {
    display: block;
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.chapter-card h2 {
    font-weight: 400;
    margin-bottom: 1rem;
}

.preview {
    color: var(--dim);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: #1a1a1a;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
}

.btn:hover {
    opacity: 0.9;
}

.chapter-list {
    margin-top: 3rem;
}

.chapter-list h3 {
    color: var(--dim);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.chapter-link {
    display: block;
    padding: 0.8rem 0;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid #333;
}

.chapter-link.current {
    color: var(--accent);
}

.chapter-link:hover {
    color: var(--accent);
}

/* Choices */
.choices {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--accent);
    text-align: center;
}

.choices h2 {
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.choice-intro {
    color: var(--dim);
    margin-bottom: 2rem;
    font-style: italic;
}

.choice-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.choice-btn {
    background: #252525;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 1.5rem;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    width: 100%;  /* ADD THIS */
}

.choice-btn:hover {
    border-color: var(--accent);
    background: #2a2a2a;
}

.choice-title {
    display: block;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.choice-desc {
    display: block;
    color: var(--dim);
    font-size: 0.9rem;
    line-height: 1.5;
}

.confirmation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #252525;
    border-radius: 8px;
}

.confirmation.hidden {
    display: none;
}

.confirmation .sub {
    color: var(--dim);
    font-style: italic;
    margin-top: 0.5rem;
}