:root {
    --cursed-purple: #6a0dad;
    --gojo-blue: #00f2ff;
    --bg-dark: #121212;
    --text-light: #e0e0e0;
}

body {
    font-family: 'Roboto', sans-serif;
    background: url(https://images5.alphacoders.com/114/thumb-1920-1141137.jpg);
    background-size: cover;
    color: var(--text-light);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background: linear-gradient(90deg, #000 0%, var(--cursed-purple) 100%);
    padding: 20px;
    display: flex;
    justify-content: center; 
    align-items: center;
    border-bottom: 2px solid var(--gojo-blue);
}

h1, h2, h3 {
    font-family: 'Shojumaru', cursive;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
    margin: 0;
}

h1 span {
    color: var(--gojo-blue);
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.47)), url('https://www.vecteezy.com/vector-art/9215343-milky-way-on-night-starry-sky-in-blue-colors-outer-space-background');
    background-size: cover;
    background-position: center;
}

.btn {
    display: inline-block;
    background-color: var(--gojo-blue);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: var(--cursed-purple);
}

#news {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    border-left: 5px solid var(--cursed-purple);
    padding-left: 15px;
    margin-bottom: 30px;
    color: #fff;
}

.news-card {
    background: #1e1e1e;
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.news-card h3 a {
    color: var(--cursed-purple);
    text-decoration: none;
    font-size: 1.2rem;
}

.news-card h3 a:hover {
    text-decoration: underline;
}

.date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #000;
    margin-top: 40px;
    font-size: 0.9em;
    color: #888;
}

footer a {
    color: var(--cursed-purple);
    text-decoration: none;
}   