/* ==========================================================================
   CASINO QATAR — GAME CATEGORY LANDING PAGES (LIGHT LUXURY THEME)
   Authoritative game hub design with editorial excellence
   ========================================================================== */

/* ---------- PAGE WRAPPER ---------- */
.game-category-page {
    width: 100%;
    background-color: #f8fafc;
    padding: 0 0 70px 0;
    direction: rtl;
    color: #334155;
    font-family: 'Alexandria', 'Cairo', sans-serif;
}

.gc-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ---------- BREADCRUMBS ---------- */
.gc-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    padding: 18px 0 0 0;
}

.gc-breadcrumbs a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.gc-breadcrumbs a:hover { color: #8a1538; }

.gc-breadcrumbs .sep {
    color: #cbd5e1;
    font-size: 11px;
}

.gc-breadcrumbs .current {
    color: #0f172a;
    font-weight: 700;
}

/* ==========================================================================
   1. HERO BANNER
   ========================================================================== */
.gc-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
    border-radius: 0 0 28px 28px;
    padding: 60px 0 50px 0;
    margin-bottom: 40px;
    overflow: hidden;
}

.gc-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gc-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(138,21,56,0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gc-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.gc-hero-text {
    flex: 1;
}

.gc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 18px;
}

.gc-hero-badge i { font-size: 14px; }

.gc-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    margin: 0 0 16px 0;
}

.gc-hero h1 .text-gold {
    background: linear-gradient(135deg, #d4af37, #f5d87a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gc-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1;
    margin: 0 0 24px 0;
    max-width: 600px;
}

.gc-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.gc-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.gc-hero-cta.primary {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(212,175,55,0.35);
}

.gc-hero-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.45);
}

.gc-hero-cta.secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
}

.gc-hero-cta.secondary:hover {
    background: rgba(255,255,255,0.14);
}

.gc-hero-icon {
    flex-shrink: 0;
    font-size: 110px;
    opacity: 0.18;
    color: #d4af37;
    line-height: 1;
}

/* ==========================================================================
   2. QUICK FACTS STRIP
   ========================================================================== */
.gc-facts-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.gc-fact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: transform 0.2s, box-shadow 0.2s;
}

.gc-fact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.gc-fact-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(138,21,56,0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #d4af37;
}

.gc-fact-value {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.gc-fact-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* ==========================================================================
   3. GAME OVERVIEW (2-COLUMN)
   ========================================================================== */
.gc-overview-section {
    margin-bottom: 45px;
}

.gc-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.gc-section-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
}

.gc-section-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.gc-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.gc-overview-text {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.gc-overview-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #475569;
    margin: 0 0 16px 0;
}

.gc-overview-text p:last-child { margin-bottom: 0; }

.gc-overview-image {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.gc-overview-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.gc-overview-image .image-caption {
    padding: 14px 20px;
    font-size: 13px;
    color: #64748b;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}

/* ==========================================================================
   4. STRATEGY TIPS GRID
   ========================================================================== */
.gc-tips-section {
    margin-bottom: 45px;
}

.gc-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gc-tip-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gc-tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.gc-tip-number {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    box-shadow: 0 3px 10px rgba(212,175,55,0.3);
}

.gc-tip-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 12px 0 10px 0;
}

.gc-tip-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #64748b;
    margin: 0;
}

/* ==========================================================================
   5. RELATED ARTICLES GRID
   ========================================================================== */
.gc-articles-section {
    margin-bottom: 45px;
}

.gc-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gc-article-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.gc-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}

.gc-article-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: #e2e8f0;
}

.gc-article-body {
    padding: 20px;
}

.gc-article-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gc-article-excerpt {
    font-size: 13px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 14px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gc-article-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #8a1538;
}

.gc-article-read-more i { font-size: 11px; }

/* ==========================================================================
   6. TOP CASINOS FOR THIS GAME
   ========================================================================== */
.gc-casinos-section {
    margin-bottom: 45px;
}

.gc-casinos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gc-casino-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #d4af37;
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: transform 0.25s, box-shadow 0.25s;
}

.gc-casino-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.gc-casino-rank {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 16px;
}

.gc-casino-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: #0f172a;
    padding: 8px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

.gc-casino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gc-casino-name {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.gc-casino-rating {
    font-size: 14px;
    color: #d4af37;
    margin-bottom: 10px;
}

.gc-casino-bonus {
    display: inline-block;
    background: linear-gradient(135deg, rgba(138,21,56,0.08), rgba(138,21,56,0.03));
    border: 1px solid rgba(138,21,56,0.12);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #8a1538;
    margin-bottom: 16px;
    width: 100%;
}

.gc-casino-cta {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #0f172a;
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.gc-casino-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}

.gc-casino-review-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #8a1538;
    text-decoration: none;
}

.gc-casino-review-link:hover { text-decoration: underline; }

/* ==========================================================================
   7. FAQ ACCORDION
   ========================================================================== */
.gc-faq-section {
    margin-bottom: 45px;
}

.gc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gc-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.gc-faq-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.04); }

.gc-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    text-align: right;
    font-family: inherit;
    gap: 12px;
}

.gc-faq-question i {
    font-size: 13px;
    color: #94a3b8;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.gc-faq-item.active .gc-faq-question i {
    transform: rotate(180deg);
    color: #d4af37;
}

.gc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.gc-faq-item.active .gc-faq-answer {
    max-height: 300px;
}

.gc-faq-answer-inner {
    padding: 0 22px 18px 22px;
    font-size: 14px;
    line-height: 1.85;
    color: #475569;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

/* ==========================================================================
   8. BOTTOM VIP CTA BANNER
   ========================================================================== */
.gc-bottom-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 22px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gc-bottom-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.08) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(138,21,56,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.gc-bottom-cta-inner {
    position: relative;
    z-index: 2;
}

.gc-bottom-cta h3 {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.gc-bottom-cta p {
    font-size: 15px;
    color: #94a3b8;
    margin: 0 0 24px 0;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.gc-bottom-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #0f172a;
    font-weight: 800;
    font-size: 16px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(212,175,55,0.35);
}

.gc-bottom-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.45);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .gc-hero-inner { flex-direction: column; text-align: center; gap: 20px; }
    .gc-hero-desc { margin-left: auto; margin-right: auto; }
    .gc-hero-actions { justify-content: center; }
    .gc-hero-icon { display: none; }
    .gc-hero h1 { font-size: 28px; }
    .gc-facts-strip { grid-template-columns: repeat(2, 1fr); }
    .gc-overview-grid { grid-template-columns: 1fr; }
    .gc-tips-grid { grid-template-columns: repeat(2, 1fr); }
    .gc-articles-grid { grid-template-columns: repeat(2, 1fr); }
    .gc-casinos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .gc-hero { padding: 40px 0 35px 0; border-radius: 0 0 18px 18px; }
    .gc-hero h1 { font-size: 22px; }
    .gc-hero-desc { font-size: 14px; }
    .gc-facts-strip { grid-template-columns: 1fr 1fr; gap: 10px; }
    .gc-fact-card { padding: 16px 14px; }
    .gc-fact-value { font-size: 18px; }
    .gc-tips-grid { grid-template-columns: 1fr; }
    .gc-articles-grid { grid-template-columns: 1fr; }
    .gc-casinos-grid { grid-template-columns: 1fr; }
    .gc-section-title { font-size: 20px; }
    .gc-bottom-cta { padding: 28px 20px; }
    .gc-bottom-cta h3 { font-size: 20px; }
}
