/* --- 6. WISHLIST SECTION --- */
.editions-section {
    padding: 80px 20px;
    background: var(--bg-dark);
    text-align: center;
    border-top: 1px solid rgba(82, 164, 155, 0.1);
}

.wishlist-title {
    font-family: var(--font-header);
    color: var(--bone-white);
    font-size: 3.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(82, 164, 155, 0.3);
}

/* --- EDITIONS CONTAINER & LAYOUT --- */
/* --- LAYOUT CONTAINER --- */
.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* --- GRID SYSTEM --- */
.editions-grid {
    display: grid;
    /* Force 2 columns */
    grid-template-columns: 1fr 1fr; 
    gap: 30px;
    justify-content: center;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.editions-grid .card:last-child:nth-child(odd) {
    grid-column: 1 / -1; /* Span across all columns (full width) */
    justify-self: center; /* Center the card horizontally in that space */
    width: 100%; /* Ensure it takes up space... */
    max-width: 435px; /* ...but cap it at roughly half the container width (minus gap) */
}

/* --- CARD BASE STYLES --- */
.card {
    background: var(--bg-card-gradient);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column; 
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    height: 100%; /* Ensures all cards in a row are same height */
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.card.steam {
    border: 1px solid rgba(102, 192, 244, 0.3);
}

.card.steam:hover {
    border-color: white;
    box-shadow: 0 15px 40px rgba(102, 192, 244, 0.2);
}

.card.steam .edition-title {
    color: white;
}

/* Steam Button Variant */
.btn-steam {
    background-color: white;
    color: var(--text-main);
    border: 1px solid white;
}

.btn-steam:hover { 
    background-color: white;
    color: #000;
    box-shadow: 0 0 25px rgba(102, 192, 244, 0.5);
}

/* --- STANDARD EDITION SPECIFICS --- */
.card.standard:hover {
    border-color: var(--spectral-green);
}

.card.standard .edition-title {
    color: var(--spectral-green);
}

/* --- DELUXE EDITION SPECIFICS --- */
.card.deluxe {
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.card.deluxe:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.card.deluxe .edition-title {
    color: var(--gold);
}

/* --- COMPONENT: CARD IMAGE --- */
.card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    background-color: #000;
    border: 1px solid #222;
}

/* --- COMPONENT: PLATFORM HEADER --- */
.platform-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.platform-icon {
    width: 48px;
    height: 48px;
}

.platform-name {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
}

/* --- COMPONENT: TITLE --- */
.edition-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

/* --- COMPONENT: FEATURES LIST --- */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1; /* Pushes button to bottom */
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.features-list li:last-child {
    border-bottom: none;
}

/* Icons within list */
.features-list i { font-size: 1rem; }
.check { color: var(--spectral-green); text-shadow: 0 0 8px rgba(82, 164, 155, 0.4); }
.gold-check { color: var(--gold); text-shadow: 0 0 8px rgba(212, 175, 55, 0.4); }
.cross { color: #444; }
.text-dim { color: #555; text-decoration: line-through; }

/* --- COMPONENT: BUTTONS --- */
.preorder-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 15px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin-top: auto;
    box-sizing: border-box;
    cursor: pointer;
}

/* Standard Button Variant */
.btn-standard {
    background-color: var(--spectral-green);
    color: var(--text-main);
    border: 1px solid var(--spectral-green);
}

.btn-standard:hover { 
    background-color: var(--spectral-green);
    color: #000;
    box-shadow: 0 0 25px rgba(82, 164, 155, 0.4);
}

/* Deluxe Button Variant */
.btn-deluxe {
    background-color: var(--gold);
    color: var(--text-main);
    border: 1px solid var(--gold);
}

/* Mobile Adjustment: Stack to 1 column */
@media (max-width: 768px) {
    .editions-grid {
        grid-template-columns: 1fr;
    }
    
    /* Reset the centering logic on mobile so it doesn't look weird */
    .editions-grid .card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
    }
}