.about-page {
    flex: 1;
    background: #000;
    display: flex;
    justify-content: center;
    padding: 120px 20px 60px 20px; /* Ίδιο padding με το game.css */
}

.about-card {
    width: 100%;
    max-width: 1100px;
    padding: 60px 40px;
    background: #000;
    color: #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    /* Το ίδιο πλαίσιο με το Game */
    border: 2px solid #ef4444;
    border-radius: 15px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Το Glow εφέ ΜΟΝΟ στο Hover */
.about-card:hover {
    border-color: #ff4d4d;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.about-title {
    font-family: 'EB Garamond', serif;
    font-size: 52px; /* Ίδιο με το game-title */
    color: #ef4444;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.about-text {
    max-width: 850px;
    font-size: 22px; /* Ίδιο με το game-summary */
    line-height: 1.7;
    color: #d1d5db;
}

.about-text p {
    margin-bottom: 25px;
}

.about-highlight {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 28px; /* Ίδιο με το game-hook */
    color: #ef4444;
    margin-top: 40px;
}

/* Responsive για κινητά */
@media (max-width: 768px) {
    .about-title { font-size: 38px; }
    .about-text { font-size: 19px; }
    .about-card { padding: 40px 20px; }
}