/* -----------------------------------------------------------
   GLOBAL STYLES
----------------------------------------------------------- */

body {
    margin: 0;
/*  padding-top: 40px;
    padding-bottom: 40px; */
    background: url('../images/parchment-bg.png') no-repeat center center fixed;
    background-size: 100% 100%;
    font-family: "Cinzel", serif;
    color: #e8e2d0;
    position: relative;
}

/* Parchment fade overlay */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(26, 26, 26, 0.4);
    z-index: -1;
}

/* -----------------------------------------------------------
   BANNER
----------------------------------------------------------- */

.banner {
    width: 100%;
    margin: 10px;
    padding: 0;
}

.banner img {
    display: block;
    width: 100%;
    height: 220px;
    /* object-fit: cover; */
}

/* -----------------------------------------------------------
   LAYOUT
----------------------------------------------------------- */

.container {
    display: flex;
    margin-top: 20px;
    gap: 20px;
}

/* -----------------------------------------------------------
   SIDEBAR
----------------------------------------------------------- */

.sidebar {
    width: 220px;
    padding: 20px;
    background: rgba(59, 47, 35, 0.9);
    border-right: 3px solid #5a3e1b;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    margin: 14px 0;
}

.sidebar a {
    color: #d2b48c;
    text-decoration: none;
    font-size: 18px;
    transition: 0.2s;
}

.sidebar a:hover {
    color: #f2d6a2;
    text-shadow: 0 0 8px #a67c52;
}

/* -----------------------------------------------------------
   MAIN CONTENT AREA
----------------------------------------------------------- */

.content {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    text-align: left;
    background: rgba(42, 34, 27, 0.9);
    border: 3px solid #5a3e1b;
    border-radius: 6px;
    background-image: url('../images/parchment-bg.png');
    background-blend-mode: multiply;
    background-repeat: repeat;
}

.content h2 {
    font-size: 38px;
    color: #d2b48c;
    text-align: center;
}

.content h3 {
    font-size: 28px;
    color: #d2b48c;
    margin-top: 30px;
}

/* -----------------------------------------------------------
   PARAGRAPHS
----------------------------------------------------------- */

.content p {
    font-size: 20px;
    line-height: 1.6;
    color: #e8e2d0;
    margin-bottom: 20px;
}

/* -----------------------------------------------------------
   LORE SNIPPET
----------------------------------------------------------- */

.lore {
    font-size: 20px;
    color: #d2b48c;
    font-style: italic;
    line-height: 1.7;
    margin: 20px auto 30px auto;
    max-width: 750px;
    text-shadow: 0 0 6px #5a3e1b;
    text-align: center;
}

/* -----------------------------------------------------------
   BLOCKQUOTES
----------------------------------------------------------- */

blockquote {
    border-left: 4px solid #5a3e1b;
    padding-left: 20px;
    margin: 20px 0;
    color: #e8e2d0;
    font-style: italic;
    line-height: 1.7;
}

/* -----------------------------------------------------------
   GOTHIC SEPARATORS
----------------------------------------------------------- */

.divider {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, #5a3e1b, #d2b48c, #5a3e1b);
    margin: 30px auto;
    width: 80%;
    box-shadow: 0 0 6px #5a3e1b;
}

/* -----------------------------------------------------------
   TIMELINE LIST (TeamSpeak Status Page)
----------------------------------------------------------- */

.timeline-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 20px 0;
    font-size: 16px;        /* Smaller text */
    line-height: 1.4;       /* Slightly tighter spacing */
    color: #e8e2d0;
}

.timeline-list li {
    margin-bottom: 12px;
}

.timeline-list strong {
    color: #d2b48c;
}

/* -----------------------------------------------------------
   BUTTONS
----------------------------------------------------------- */

.buttons {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    font-size: 22px;
    text-decoration: none;
    border: 2px solid #7a2e2e;
    color: #e8e2d0;
    transition: 0.3s;
}

.enter {
    background: #7a2e2e;
}

.enter:hover {
    background: #9c3b3b;
    box-shadow: 0 0 12px #d2b48c;
}

.scared {
    background: transparent;
    color: #d2b48c;
}

.scared:hover {
    color: #f2d6a2;
    border-color: #a67c52;
    text-shadow: 0 0 8px #d2b48c;
}

/* -----------------------------------------------------------
   LINKS INSIDE CONTENT
----------------------------------------------------------- */

.content a {
    color: #d2b48c;
    text-decoration: none;
}

.content a:hover {
    color: #f2d6a2;
    text-shadow: 0 0 8px #d2b48c;
}

/* -----------------------------------------------------------
   LANDING PAGE OVERRIDES
----------------------------------------------------------- */

body.landing .container {
    display: block;
    margin-top: 20px;
    gap: 0;
}

body.landing .content {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    text-align: center;
    background: none;
    border: none;
}

/* -----------------------------------------------------------
   ROSTER PAGE ENHANCEMENTS
----------------------------------------------------------- */

.roster-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 20px 0;
}

.roster-list li {
    padding: 4px 0;
    font-size: 20px;
    transition: 0.2s;
}

.roster-list li:hover {
    color: #f2d6a2;
    text-shadow: 0 0 6px #d2b48c;
}

/* Collapsible sections */
.roster-section summary {
    cursor: pointer;
    list-style: none;
}

.roster-section summary h3 {
    display: inline-block;
    margin: 0;
    padding: 6px 0;
}

.roster-section[open] summary h3 {
    text-shadow: 0 0 6px rgba(255, 230, 180, 0.4);
}

/* Deceased styling */
.deceased h3 {
    color: #c9b8b8;
    text-shadow: 0 0 8px rgba(120, 0, 0, 0.6);
}

.deceased-list li {
    color: #c9b8b8;
}

.dedication {
    margin-top: 5px;
    margin-bottom: 10px;
    color: #c9b8b8;
    font-size: 0.95em;
    text-shadow: 0 0 4px rgba(120, 0, 0, 0.4);
}

/* ============================
   GAMES PAGE STYLES
   ============================ */

.games-title {
    text-align: center;
    padding: 40px 0 10px 0;
    font-size: 42px;
    letter-spacing: 2px;
    color: #c9b37e;
    text-shadow: 0 0 10px #000;
}

.games-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #b8b8b8;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 20px 40px 60px 40px;
}

.game-card {
    background-color: rgba(0, 0, 0, 0.55);
    border: 1px solid #333;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    transition: 0.2s ease-in-out;
}

.game-card:hover {
    transform: scale(1.03);
    border-color: #c9b37e;
    box-shadow: 0 0 12px rgba(201, 179, 126, 0.4);
}

.game-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #000;
}

.game-title {
    margin-top: 12px;
    font-size: 18px;
    color: #e6d8b8;
    font-weight: bold;
}

.game-desc {
    margin-top: 8px;
    font-size: 14px;
    color: #cfcfcf;
    line-height: 1.4;
}
