/* GENERAL */
body {
    margin: 0;
    font-family: Georgia, serif;
    background: #000;
    color: #fff;
}

/* HEADER */
.header-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.top-nav {
    display: flex;
    justify-content: center;
    background: #111;
    padding: 10px;
}

.top-nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
}

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

/* LAYOUT */
.container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* MODULES */
.module {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border: 1px solid #333;
}

/* LEFT + RIGHT SMALLER */
.left, .right {
    width: 20%;
}

/* CENTER BIGGER */
.center {
    width: 50%;
}

/* LINKS */
.link-list {
    list-style: none;
    padding: 0;
}

.link-list li {
    margin-bottom: 8px;
}

a {
    color: #fff;
}

/* IMAGES */
.main-img {
    width: 100%;
    margin: 10px 0;
}

/* PAYMENTS */
.payments {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.payments img {
    width: 50px;
    filter: grayscale(100%) brightness(200%);
    transition: 0.3s;
}

.payments img:hover {
    filter: none;
}

/* UPDATES SCROLL BOX */
.updates-box {
    max-height: 300px;
    overflow-y: auto;
    border-top: 1px solid #333;
    padding-top: 10px;
}

.updates-box p {
    margin-bottom: 10px;
}

/* DROPDOWNS */
select {
    width: 100%;
    margin-bottom: 10px;
    background: #111;
    color: #fff;
    border: 1px solid #333;
    padding: 5px;
}

/* UPDATE ENTRIES */
.update-entry {
    border-bottom: 1px dashed #555;
    padding: 8px 0;
}

.update-entry:last-child {
    border-bottom: none;
}

/* DATE STYLE */
.date {
    font-size: 0.8em;
    color: #aaa;
    display: block;
    margin-bottom: 3px;
}

/* SCROLLBAR (optional but cool) */
.updates-box::-webkit-scrollbar {
    width: 6px;
}

.updates-box::-webkit-scrollbar-track {
    background: #111;
}

.updates-box::-webkit-scrollbar-thumb {
    background: #444;
}

.updates-box::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* ====================== BUTTON CONTAINER ====================== */
.button-container {
    margin: 35px 0 20px 0;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

/* Main button style - matches your dark aesthetic */
.big-button {
    display: inline-block;
    padding: 16px 28px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-family: Georgia, serif;
    font-size: 1.15rem;
    font-weight: bold;
    border: 2px solid #444;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.big-button:hover {
    background: #222;
    border-color: #777;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(139, 0, 0, 0.4);   /* subtle red glow on hover */
}

/* Active/pressed state */
.big-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

/* Make buttons look a bit more premium on larger screens */
@media (max-width: 768px) {
    .big-button {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 1.05rem;
    }
    
    .button-container {
        gap: 12px;
    }
}
/* ====================== AO3-STYLE META BOX ====================== */
.fic-meta {
    background: #111;
    border: 2px solid #444;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.fic-title {
    margin: 0 0 15px 0;
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #555;
    padding-bottom: 12px;
}

.meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 30px;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.meta-info div {
    color: #ddd;
}

.meta-value {
    color: #fff;
    font-weight: normal;
}

.tags {
    margin: 18px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #222;
    color: #ccc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #555;
}

.stats {
    display: flex;
    gap: 25px;
    font-size: 1.05rem;
    margin: 18px 0;
    padding: 10px 0;
    border-top: 1px dashed #555;
    border-bottom: 1px dashed #555;
}

.stats span {
    color: #bbb;
}

.chapter-nav {
    margin-top: 15px;
}

.chapter-nav label {
    display: inline-block;
    margin-right: 10px;
    color: #ccc;
}

.chapter-nav select {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #555;
    padding: 6px 10px;
    font-size: 1rem;
    border-radius: 4px;
    width: 100%;
    max-width: 420px;
}

/* Hover effect on tags */
.tag:hover {
    background: #8B0000;
    color: white;
    border-color: #c00;
}
