/* Download Button WordPress Styles */

.download-container-wp {
    max-width: 1100px;
    margin: 40px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Main download button */
.main-download-btn-wp {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.main-download-btn-wp:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.arrow-wp {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.main-download-btn-wp.active .arrow-wp {
    transform: rotate(180deg);
}

/* Dropdown container */
.download-dropdown-wp {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 20px;
}

.download-dropdown-wp.show {
    max-height: 1000px;
}

/* Download items */
.download-item-wp {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.download-item-wp:hover {
    border-color: #2ecc71;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-info-wp {
    flex: 1;
}

.download-title-wp {
    color: #e74c3c;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.download-filename-wp {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.download-meta-wp {
    color: #7f8c8d;
    font-size: 14px;
}

.download-btn-wp {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.download-btn-wp:hover {
    background: #27ae60;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
    color: white;
    text-decoration: none;
}

/* Game info section */
.game-info-wp {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.game-icon-wp {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.game-icon-wp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-details-wp h1 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.game-details-wp p {
    color: #7f8c8d;
    font-size: 16px;
    margin-bottom: 25px;
}

.game-specs-wp {
    display: flex;
    gap: 40px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
}

.spec-item-wp {
    text-align: center;
}

.spec-label-wp {
    color: #95a5a6;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value-wp {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .game-info-wp {
        flex-direction: column;
        text-align: center;
    }

    .game-specs-wp {
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .download-item-wp {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .download-btn-wp {
        width: 100%;
    }
    
    .game-details-wp h1 {
        font-size: 22px;
    }
    
    .spec-value-wp {
        font-size: 18px;
    }
}
