.news-page {
    flex: 1;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 20px 60px 20px; /* Ίδια απόσταση από το header */
}

.news-card {
    width: 100%;
    max-width: 1100px; /* Ίδιο πλάτος με Game και About */
    padding: 40px;
    background: #000;
    color: #e5e7eb;
    margin-bottom: 40px; /* Απόσταση μεταξύ των άρθρων */
    
    /* Το ίδιο πλαίσιο */
    border: 2px solid #ef4444;
    border-radius: 15px;
    text-align: left; /* Στο News η αριστερή στοίχιση είναι πιο ξεκούραστη */
    
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Hover Glow για κάθε κάρτα νέων */
.news-card:hover {
    border-color: #ff4d4d;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.news-date {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    color: #ef4444;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.news-title {
    font-family: 'EB Garamond', serif;
    font-size: 38px; /* Λίγο μικρότερο από το Game-title για να χωράει σε κάρτα */
    color: #e5e7eb;
    margin-bottom: 20px;
    line-height: 1.2;
}

.news-content {
    font-family: 'EB Garamond', serif;
    font-size: 21px; /* Μεγάλο και καθαρό κείμενο */
    line-height: 1.6;
    color: #d1d5db;
}

.news-content p {
    margin-bottom: 15px;
}

/* Στυλ για το κουμπί "Read More" */
.read-more {
    background: transparent;
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 8px 20px;
    border-radius: 4px;
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.read-more:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #fff;
    border-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .news-title { font-size: 28px; }
    .news-content { font-size: 18px; }
    .news-card { padding: 30px 20px; }
}

/* Κρύβουμε το έξτρα περιεχόμενο αρχικά */
.extra-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out; /* Ομαλό άνοιγμα */
}

/* Όταν η κάρτα έχει την κλάση .expanded, το περιεχόμενο εμφανίζεται */
.news-card.expanded .extra-content {
    max-height: 1000px; /* Ένα μεγάλο ύψος για να χωράει το κείμενο */
    opacity: 1;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(239, 68, 68, 0.2); /* Μια διακριτική γραμμή διαχωρισμού */
}