@charset "utf-8";

body {
    background-color: #050a05;
    color: #aacc99;
    font-family: "Courier New", Courier, monospace;
    margin: 0;
    padding: 20px;
    background-image: radial-gradient(#0a1a0a 2px, transparent 2px);
    background-size: 30px 30px;
}

.hub-container {
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #1a331a;
    padding: 40px;
    background: rgba(0, 10, 0, 0.9);
    box-shadow: 0 0 30px rgba(74, 246, 38, 0.1);
}

header {
    text-align: center;
    border-bottom: 2px solid #4af626;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

h1 {
    color: #4af626;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 10px 0;
}

.intro {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.link-card {
    border: 1px solid #1a331a;
    padding: 20px;
    transition: 0.3s;
    background: #000;
}

.link-card:hover {
    border-color: #4af626;
    transform: translateY(-5px);
}

.link-card h2 {
    color: #4af626;
    font-size: 1.2rem;
    margin-top: 0;
}

.link-card h2 a {
    color: inherit;
    text-decoration: none;
}

.link-card p {
    font-size: 0.9rem;
    color: #88aa88;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    border: 1px solid #4af626;
    color: #4af626;
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn:hover {
    background: #4af626;
    color: #000;
}

.story-list {
    margin-top: 40px;
    border-top: 1px dashed #1a331a;
    padding-top: 20px;
}

.story-list h3 {
    color: #88aa88;
    margin-bottom: 20px;
}

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

.story-list li {
    margin-bottom: 10px;
}

.story-list a {
    color: #aacc99;
    text-decoration: none;
    transition: 0.2s;
}

.story-list a:hover {
    color: #4af626;
    padding-left: 5px;
}