.game-page {
    flex: 1;
    background: #000;
    display: flex;
    justify-content: center;
    padding: 120px 20px 60px 20px; /* Απόσταση από το header */
}

.game-card {
    width: 100%;
    max-width: 1100px;
    padding: 60px 40px;
    background: #000;
    color: #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    /* Το πλαίσιο όπως στο News/About */
    border: 2px solid #ef4444;
    border-radius: 15px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Το Glow ΜΟΝΟ στο Hover */
.game-card:hover {
    border-color: #ff4d4d;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.game-title {
    font-size: 52px;
    color: #ef4444;
    margin-bottom: 30px;
}

.game-hook {
    font-style: italic;
    font-size: 28px;
    color: #ef4444;
    margin-bottom: 25px;
}

.game-summary {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
    max-width: 800px;
    font-size: 20px;
}

/* SLIDER FIXES */
.slider {
    width: 100%;
    max-width: 900px;
    margin: 20px 0;
}

.slides {
    position: relative;
    height: 500px;
    background: #000;
    overflow: hidden;
    border-radius: 8px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide.active { opacity: 1; }

.slide img, .slide video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #ef4444;
}

.dot.active {
    background: #ef4444;
    transform: scale(1.2);
}

/* Προσθήκη στο CSS αρχείο σου */

.steam-cta-container {
    text-align: center; /* Κεντράρισμα του κουμπιού */
    margin-top: 30px;
    margin-bottom: 30px;
}

.steam-cta {
    display: inline-flex;
    align-items: center;
    background-color: #1a1a1a; /* Σχεδόν μαύρο */
    border: 2px solid #333; /* Σκούρο γκρι outline */
    color: #f1f1f1; /* Off-white */
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'EB Garamond', serif;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    font-size: 1.1rem;
}

/* Styling για το Steam icon μέσα στο κουμπί */
.steam-cta img {
    margin-right: 12px;
    width: 24px;
    height: auto;
    vertical-align: middle;
}

/* Εφέ όταν περνάς το ποντίκι (Hover) */
.steam-cta:hover {
    background-color: #f1f1f1; /* Λευκό */
    color: #1a1a1a; /* Μαύρο κείμενο */
    border-color: #f1f1f1;
    transform: translateY(-2px); /* Ελαφριά ανύψωση */
    box-shadow: 0 6px 10px rgba(0,0,0,0.5); /* Μεγαλύτερη σκιά */
}