﻿/* Extracted from views\story_read.php */

.story-read-container {
        background: #0b0b0e;
        min-height: 100vh;
        padding: 40px 10%;
        color: #ddd;
        line-height: 1.8;
    }
    .story-nav {
        margin-bottom: 40px;
    }
    .story-nav a {
        color: #ffd700;
        text-decoration: none;
        font-family: 'Cinzel', serif;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: 0.3s;
    }
    .story-nav a:hover {
        opacity: 0.7;
    }
    .story-paper {
        max-width: 800px;
        margin: 0 auto;
        padding: 60px;
        background: rgba(255,255,255,0.02);
        border: 1px solid rgba(255,215,0,0.1);
        border-radius: 8px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    }
    .story-content h1 {
        font-family: 'Cinzel', serif;
        font-size: 42px;
        color: #ffd700;
        text-align: center;
        margin-bottom: 50px;
    }
    .story-img {
        width: 100%;
        max-height: 450px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        border: 1px solid rgba(255,215,0,0.2);
    }
    .story-content {
        font-size: 18px;
        font-family: 'Inter', sans-serif;
        text-align: justify;
    }
    .story-content strong {
        color: #fff;
    }
    .story-content em {
        color: #ffd700;
        font-family: 'Cinzel', serif;
    }
    .story-footer {
        margin-top: 80px;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.05);
        padding-top: 40px;
    }
    .btn-action {
        display: inline-block;
        padding: 15px 40px;
        background: #8b0000;
        color: #fff;
        text-decoration: none;
        font-family: 'Cinzel', serif;
        border: 1px solid #ffd700;
        border-radius: 4px;
        transition: 0.3s;
    }
    .btn-action:hover {
        transform: translateY(-3px);
        filter: brightness(1.2);
    }
