.info-page {
    display: flex;
    gap: 40px;
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 42px;
    box-sizing: border-box;
}

.info-cover {
    flex-shrink: 0;
}

.info-cover-img {
    width: 280px;
    height: 420px;
    object-fit: cover;
    border: 1px solid rgba(127, 255, 212, 0.3);
    display: block;
}

.info-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-title {
    font-family: "jf_dot_ayu";
    color: aquamarine;
    font-size: 28px;
    margin: 0;
}

.info-description {
    font-family: "jf_dot_ayu";
    color: rgba(127, 255, 212, 0.7);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Meta */
.info-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid rgba(127, 255, 212, 0.1);
    border-bottom: 1px solid rgba(127, 255, 212, 0.1);
    padding: 12px 0;
}

.info-meta-row {
    display: flex;
    gap: 16px;
    font-family: "jf_dot_ayu";
    font-size: 13px;
}

.info-meta-label {
    color: rgba(127, 255, 212, 0.4);
    width: 110px;
    flex-shrink: 0;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    padding-top: 2px;
}

.info-meta-value {
    color: aquamarine;
}

/* Tags */
.info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.info-tag {
    font-family: "jf_dot_ayu";
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 2px;
    border: 1px solid;
    text-decoration: none;
    transition: opacity 0.15s;
}

.info-tag:hover { opacity: 0.7; }

.info-tag-copyright {
    color: #f0d060;
    border-color: rgba(240, 208, 96, 0.3);
    background-color: rgba(240, 208, 96, 0.08);
}

.info-tag-character {
    color: #80c89a;
    border-color: rgba(128, 200, 154, 0.3);
    background-color: rgba(128, 200, 154, 0.08);
}

.info-tag-general {
    color: #80aad0;
    border-color: rgba(128, 170, 208, 0.3);
    background-color: rgba(128, 170, 208, 0.08);
}

/* Chapters list */
.info-chapters-title {
    font-family: "jf_dot_ayu";
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(127, 255, 212, 0.4);
    margin-bottom: 8px;
}

.info-chapter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(127, 255, 212, 0.07);
    font-family: "jf_dot_ayu";
    font-size: 13px;
}

.info-chapter-link {
    color: aquamarine;
    text-decoration: none;
    transition: opacity 0.15s;
}

.info-chapter-link:hover { opacity: 0.7; }

.info-chapter-pages {
    color: rgba(127, 255, 212, 0.4);
    font-size: 12px;
}

/* Actions */
.info-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.info-read-btn {
    font-family: "jf_dot_ayu";
    font-size: 14px;
    padding: 10px 32px;
    background-color: rgba(127, 255, 212, 0.1);
    border: 1px solid rgba(127, 255, 212, 0.4);
    color: aquamarine;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.15s;
    letter-spacing: 1px;
}

.info-read-btn:hover { background-color: rgba(127, 255, 212, 0.2); }

.info-back-btn,
.info-admin-btn {
    font-family: "jf_dot_ayu";
    font-size: 13px;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid rgba(127, 255, 212, 0.2);
    color: rgba(127, 255, 212, 0.6);
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.15s;
}

.info-back-btn:hover,
.info-admin-btn:hover {
    background-color: rgba(127, 255, 212, 0.06);
    color: aquamarine;
}

/* ── Thumbnail preview ── */
.info-preview {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 60px;
    box-sizing: border-box;
}

.info-preview-chapter {
    margin-bottom: 32px;
}

.info-preview-chapter-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(127, 255, 212, 0.1);
}

.info-preview-chapter-title {
    font-family: "jf_dot_ayu";
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(127, 255, 212, 0.6);
}

.info-preview-chapter-count {
    font-family: "jf_dot_ayu";
    font-size: 11px;
    color: rgba(127, 255, 212, 0.3);
}

.info-preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.info-thumb-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    border: 1px solid rgba(127, 255, 212, 0.15);
    overflow: hidden;
    transition: border-color 0.15s;
    vertical-align: top;
}

.info-thumb-link:hover {
    border-color: rgba(127, 255, 212, 0.5);
}

.info-thumb-hidden {
    display: none;
}

.info-thumb {
    width: auto;
    height: 140px;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.info-thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: rgba(127, 255, 212, 0.7);
    font-family: "jf_dot_ayu";
    font-size: 10px;
    text-align: center;
    padding: 2px 0;
}

.info-preview-controls {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.info-preview-btn {
    font-family: "jf_dot_ayu";
    font-size: 11px;
    padding: 5px 14px;
    background-color: transparent;
    border: 1px solid rgba(127, 255, 212, 0.2);
    color: rgba(127, 255, 212, 0.6);
    cursor: pointer;
    border-radius: 2px;
    letter-spacing: 1px;
    transition: background-color 0.12s;
}

.info-preview-btn:hover {
    background-color: rgba(127, 255, 212, 0.06);
    color: aquamarine;
}

/* ── Locked content ── */
.info-locked {
    margin: 12px 0;
    padding: 10px 12px;
    border: 1px solid rgba(255, 212, 59, 0.5);
    background-color: rgba(255, 212, 59, 0.08);
    color: #ffd43b;
    font-size: 13px;
}
.info-locked strong { color: #ffd43b; }
.info-locked a { color: aquamarine; margin-left: 6px; }
.info-thumb-lock {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 150 / 210;
    background: repeating-linear-gradient(45deg, #1d1f1f, #1d1f1f 8px, #242626 8px, #242626 16px);
    font-size: 28px;
}
