@charset "utf-8";

body {
    background-color: #1a1510;
    color: #eebb99;
    font-family: "Garamond", "Georgia", serif;
    margin: 0;
    padding: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='%232e261f'/%3E%3C/svg%3E");
}

.hub-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    background: #221a15;
    border: 4px solid #5a4635;
    box-shadow: 0 0 20px #000;
}

header {
    text-align: center;
    border-bottom: 2px solid #5a4635;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

h1 {
    font-size: 3rem;
    color: #ffd700;
    text-shadow: 2px 2px 5px #000;
    margin-bottom: 10px;
}

.sub-title {
    color: #8c7b66;
    font-style: italic;
    font-size: 1.2rem;
}

.nav-link {
    display: inline-block;
    margin-top: 15px;
    color: #eebb99;
    text-decoration: none;
    border-bottom: 1px solid #eebb99;
    transition: 0.3s;
}

.nav-link:hover {
    color: #ffd700;
    border-color: #ffd700;
}

.main-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.left-col {
    flex: 2;
}

.right-col {
    flex: 1;
    background: #1a1510;
    padding: 20px;
    border: 1px solid #3d2e22;
}

.section-title {
    font-size: 1.5rem;
    color: #ffd700;
    border-left: 4px solid #ffd700;
    padding-left: 15px;
    margin-bottom: 20px;
}

.card {
    background: #2d221b;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #4a3b2a;
    transition: 0.3s;
}

.card:hover {
    border-color: #ffd700;
    transform: translateX(5px);
}

.card h3 {
    margin-top: 0;
}

.card h3 a {
    color: #eebb99;
    text-decoration: none;
}

.card p {
    color: #998877;
    font-size: 0.9rem;
}

.story-list {
    list-style: none;
    padding: 0;
}

.story-list li {
    margin-bottom: 15px;
    border-bottom: 1px dashed #3d2e22;
    padding-bottom: 5px;
}

.story-list a {
    color: #d4c5b0;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    line-height: 1.4;
}

.story-list a:hover {
    color: #ffd700;
}