/* Epic Games Store Products Section */

/* Container styling */
.epic-games-container {
    padding: 3rem 0;
}

/* Page title */
.epic-games-container h1 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.epic-games-container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    border-radius: 2px;
}

/* Product card styling */
.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Product image styling */
.product-image-link {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 250px;
}

.product-image-link:hover {
    transform: scale(1.03);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Product title */
.product-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    line-height: 1.3;
}

/* Product description */
.product-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Download button */
.download-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.download-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f639b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .product-image-link {
        height: 200px;
        margin-bottom: 1.5rem;
    }
    
    .epic-games-container h1 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .download-btn {
        width: 100%;
        justify-content: center;
    }
    
    .product-card {
        padding: 1.25rem;
    }
}