body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f0f0f;
    color: #f3f3f3;
}

a {
    text-decoration: none;
color: #ffffff;
}

a:visited {
    text-decoration: none;
color: #ffffff;
}

a:active {
    text-decoration: none;
color: #ffffff;
}

a:hover {
    text-decoration: none;
color: yellow;
}

.site-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
}

.site-header {
    text-align: center;
    margin-bottom: 28px;
}

.site-logo {
    max-width: 100%;
    max-height: 180px;
    height: auto;
}

.site-title {
    margin: 0;
    font-size: 36px;
}

.site-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.site-nav a {
    color: #fff;
    background: #1b1b1b;
    border: 1px solid #2f2f2f;
    border-radius: 8px;
    padding: 10px 14px;
}

.intro-box {
    background: #171717;
    border: 1px solid #2b2b2b;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
}

.story-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.story-card {
    background: #171717;
    border: 1px solid #2b2b2b;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
}

.story-card-logo img {
    max-width: 100%;
    max-height: 90px;
    margin-bottom: 14px;
}

.btn {
    display: inline-block;
    background: #b50f0f;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
}

.site-footer {
    text-align: center;
    padding: 20px 0 8px;
    color: #bbb;
}