body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #0f0f23;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #1a1a3a;
    color: #00ffcc;
    padding: 1.5em 0;
    text-align: center;
    border-bottom: 3px solid #00ffcc;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
}

main {
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
    background-color: #1a1a3a;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
}

.news-item {
    background-color: #2a2a4a;
    border: 1px solid #00ffcc;
    border-left: 5px solid #00ffcc;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.1);
    transition: transform 0.2s ease-in-out;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 255, 204, 0.3);
}

.news-item h2 {
    color: #00ffcc;
    margin-top: 0;
    font-size: 1.8em;
}

.news-item h2 a {
    color: #00ffcc;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.news-item h2 a:hover {
    color: #66ffe6;
    text-decoration: underline;
}

.news-item .summary {
    color: #c0c0d0;
    margin-bottom: 15px;
}

.feedback {
    text-align: right;
    font-size: 0.9em;
    color: #a0a0b0;
}

.feedback button {
    background-color: #00ffcc;
    color: #0f0f23;
    border: none;
    padding: 8px 12px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.feedback button:hover {
    background-color: #66ffe6;
    color: #0f0f23;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1a1a3a;
    color: #a0a0b0;
    border-top: 3px solid #00ffcc;
    margin-top: 30px;
    font-size: 0.9em;
}
