/* ============================================
   Poker Games Page Styles
   ============================================ */

/* Hero Section - Poker Theme */
.hero--poker {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero--poker::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero--poker .hero__inner {
    position: relative;
    z-index: 1;
}

.hero__icon {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 0, 110, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Categories Section */
.poker-categories {
    background-color: #f9f9f9;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 0, 110, 0.15);
    border-color: #ff006e;
}

.category-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #ff006e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card__icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 600;
}

.category-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-card__link {
    color: #ff006e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.category-card__link:hover {
    gap: 0.75rem;
}

/* Featured Products Section */
.featured-products {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(255, 0, 110, 0.12);
    border-color: #ff006e;
}

.product-card__image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #f0f0f0 100%);
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
}

.product-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    padding: 1rem 1rem 0.5rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff006e;
    padding: 0.5rem 1rem;
}

.product-desc {
    font-size: 0.875rem;
    color: #666;
    padding: 0 1rem;
    flex-grow: 1;
    line-height: 1.5;
}

.btn-sm {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    margin: 1rem;
}

/* Why Choose Us Section */
.why-choose {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #ff006e;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(255, 0, 110, 0.1);
}

.benefit-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ff006e;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff006e 0%, #e60052 100%);
    color: white;
    padding: 4rem 2rem;
}

.cta-inner {
    text-align: center;
}

.cta-inner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-inner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-lg {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero--poker::before {
        width: 400px;
        height: 400px;
        top: -30%;
        right: -20%;
    }

    .cta-inner h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        padding: 1.5rem;
    }

    .product-card h3 {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 2.5rem 1.5rem;
    }
}
