/* Premium Casino Specific Styles */

/* Casino Hero */
.casino-hero {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 100%), url('../images/sports_hero_bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 0;
    /* No radius for full width */
    padding: 40px 0;
    /* Vertical padding only, horiz handled by container */
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid var(--color-accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Bottom shadow only */
    position: relative;
    overflow: hidden;
    color: white;
    width: 100%;
    min-height: 260px;
    /* Taller for cinematic feel */
    display: block;
    /* Content centering handled by inner container */
}

.casino-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    /* Constrain text width */
    text-align: left;
}

.casino-hero h1 {
    font-size: 48px;
    /* Larger title */
    font-family: var(--font-heading);
    color: var(--color-accent-gold);
    text-shadow: 0 0 20px rgba(255, 200, 0, 0.2);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.casino-hero p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Category Filters */
.casino-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.c-filter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 20px;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: 0.3s;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.c-filter.active,
.c-filter:hover {
    background: var(--color-accent-gold);
    color: black;
    border-color: var(--color-accent-gold);
    transform: translateY(-2px);
    font-weight: 600;
}

/* Premium Game Card Enhancements (Building on base game-card) */
.premium-game-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    /* Taller poster style for casino */
    border: 1px solid var(--glass-border);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #111;
}

.premium-game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 200, 0, 0.15);
    border-color: var(--color-accent-gold);
    z-index: 10;
}

.pgc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    filter: brightness(0.8);
}

.premium-game-card:hover .pgc-img {
    filter: brightness(1.1);
    transform: scale(1.1);
}

.pgc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 15px;
    z-index: 2;
}

.pgc-title {
    color: white;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 5px;
}

.pgc-tag {
    font-size: 10px;
    color: var(--color-accent-gold);
    background: rgba(255, 200, 0, 0.1);
    padding: 3px 6px;
    border-radius: 4px;
    display: inline-block;
}

.pgc-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e6b000;
    color: black;
    font-size: 9px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Casino SEO Section */
.casino-seo {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-top: 2px solid var(--color-accent-gold);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.casino-seo h2 {
    font-family: var(--font-heading);
    color: var(--color-accent-gold);
    margin-bottom: 20px;
}

.casino-seo p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 14px;
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.k-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    color: #888;
}