/* Skins Page Specific Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 6rem 0;
    margin-bottom: 2rem;
}

/* Bundle Cards */
.bundle-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.bundle-card:hover {
    transform: translateY(-5px);
}

.bundle-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.bundle-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bundle-content {
    padding: 1.5rem;
}

.bundle-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.bundle-features {
    margin-bottom: 1rem;
}

.bundle-features .badge {
    margin-right: 0.5rem;
    font-weight: 500;
}

.bundle-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
}

/* Skin Cards */
.skin-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.skin-card:hover {
    transform: translateY(-5px);
}

.skin-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.skin-content {
    padding: 1.5rem;
    text-align: center;
}

.skin-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.skin-rarity {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1rem;
}

.skin-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Category Cards */
.category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    text-align: center;
}

.category-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .bundle-image {
        height: 180px;
    }
    
    .skin-image {
        height: 200px;
    }
    
    .category-card {
        height: 250px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bundle-card,
.skin-card,
.category-card {
    animation: fadeInUp 0.6s ease-out forwards;
} 