 * { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-main); }
        body { background: var(--bg-body); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
        a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
        
        .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }
        .section-header h2 { font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; gap: 10px; color: var(--text-dark); }
        .section-header h2 i { color: var(--primary); }
        .btn-view-all { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); }
        .btn-view-all:hover { color: var(--primary); }

        /* --- HERO SECTION --- */
        .hero { padding: 80px 0 60px; text-align: center; background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-body) 100%); border-bottom: 1px solid var(--border-light); }
        .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(37, 99, 235, 0.1); color: var(--primary); font-size: 0.85rem; font-weight: 700; padding: 6px 16px; border-radius: 30px; margin-bottom: 24px; letter-spacing: 0.5px; text-transform: uppercase; }
        .hero h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; color: #020617; }
        .hero-desc { font-size: 1.2rem; color: var(--text-muted); max-width: 650px; margin: 0 auto 32px; font-weight: 500; }
        .trust-bar { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
        .trust-badge { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); background: var(--bg-surface); padding: 8px 16px; border-radius: 12px; border: 1px solid var(--border-light); box-shadow: var(--shadow-soft); }
        .trust-badge i { color: var(--accent); font-size: 1.1rem; }

        /* --- SEARCH ENGINE (PREMIUM BAR) --- */
        .search-engine-wrapper { margin-top: -30px; margin-bottom: 60px; position: relative; z-index: 10; }
        .search-engine { background: var(--bg-surface); padding: 12px; border-radius: 100px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 15px 35px -5px rgba(0,0,0,0.05); border: 1px solid rgba(226, 232, 240, 0.9); }
        .input-group { flex: 1; padding: 0 24px; display: flex; flex-direction: column; border-right: 1px solid var(--border-light); }
        .input-group:nth-last-child(2) { border-right: none; }
        .input-group label { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
        .select-wrapper { display: flex; align-items: center; gap: 10px; }
        .select-wrapper i { color: var(--text-dark); font-size: 1.2rem; }
        .select-wrapper select { width: 100%; border: none; background: transparent; font-size: 1rem; font-weight: 600; color: var(--text-dark); cursor: pointer; outline: none; -webkit-appearance: none; appearance: none; padding-right: 20px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right center; background-size: 16px; }
        .btn-search { background: var(--primary); color: #fff; border: none; padding: 16px 32px; border-radius: 100px; font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 8px; cursor: pointer; transition: background 0.2s; flex-shrink: 0; }
        .btn-search:hover { background: #1d4ed8; }

        /* --- BENTO GRID CATEGORIES --- */
        .category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 20px; }
        .cat-card { background: var(--bg-surface); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 16px; transition: all 0.3s ease; }
        .cat-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
        .cat-icon { width: 48px; height: 48px; background: rgba(37, 99, 235, 0.05); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); }
        .cat-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
        .cat-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

        /* --- SLOTS BENTO GRID --- */
        .slots-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-bottom: 60px; }
        .slot-card { background: var(--bg-surface); border-radius: var(--radius-lg); overflow: hidden; position: relative; border: 1px solid var(--border-light); transition: all 0.3s; }
        .slot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
        .slot-img { height: 140px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #cbd5e1; }
        .slot-img img { width: 100%; height: 100%; object-fit: cover; }
        .slot-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 140px; background: rgba(15, 23, 42, 0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; backdrop-filter: blur(2px); }
        .slot-card:hover .slot-overlay { opacity: 1; }
        .btn-demo { background: #fff; color: var(--text-dark); padding: 8px 20px; border-radius: 20px; font-weight: 700; font-size: 0.85rem; }
        .slot-info { padding: 16px; }
        .slot-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .slot-info p { font-size: 0.8rem; color: var(--text-muted); }

        /* --- MAIN LAYOUT (LIST & SIDEBAR) --- */
        .layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; margin-bottom: 60px; }
        
        /* --- PREMIUM CASINO ROWS (CLEAN LIST) --- */
        .premium-casino-list { display: flex; flex-direction: column; gap: 16px; }
        .pc-card { background: var(--bg-surface); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 20px; display: flex; align-items: center; justify-content: space-between; position: relative; transition: all 0.2s; box-shadow: var(--shadow-soft); }
        .pc-card:hover { border-color: rgba(37, 99, 235, 0.3); box-shadow: var(--shadow-hover); }
        .pc-card.featured-card { border: 1px solid rgba(16, 185, 129, 0.3); background: linear-gradient(90deg, rgba(16,185,129,0.02) 0%, transparent 100%); }
        
        .pc-main { display: flex; align-items: center; gap: 20px; flex: 1; }
        .pc-rank { font-size: 1rem; font-weight: 800; color: #cbd5e1; width: 24px; text-align: center; }
        .pc-logo { width: 210px; height: 64px; border-radius: 12px; background: var(--hero-bg); border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; padding: 8px; flex-shrink: 0; }
        .pc-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
        .pc-logo span { font-weight: 800; font-size: 0.9rem; color: var(--text-dark); }
        
        .pc-info { display: flex; flex-direction: column; gap: 4px; }
        .pc-title-wrapper { display: flex; align-items: center; gap: 8px; }
        .pc-title { font-size: 1.15rem; font-weight: 800; color: var(--text-dark); margin: 0; }
        .pc-title:hover { color: var(--primary); }
        .pc-bonus { font-size: 0.9rem; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 6px; }
        
        .pc-meta { display: flex; align-items: center; gap: 16px; }
        .pc-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); background: var(--bg-body); padding: 4px 10px; border-radius: 6px; }
        
        .pc-action { display: flex; align-items: center; gap: 24px; padding-left: 24px; border-left: 1px solid var(--border-light); }
        .pc-score { display: flex; flex-direction: column; align-items: center; line-height: 1.2; }
        .pc-score strong { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); }
        .pc-score span { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
        .pc-score span i { color: var(--warning); }
        .pc-btn { background: var(--text-dark); color: #fff; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; transition: background 0.2s; white-space: nowrap; }
        .pc-btn:hover { background: var(--primary); }

        .pc-ribbon { position: absolute; top: -10px; right: 20px; background: var(--warning); color: #fff; font-size: 0.7rem; font-weight: 800; padding: 4px 12px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 4px 6px rgba(245, 158, 11, 0.2); }

        /* --- SIDEBAR WIDGETS (CLEAN) --- */
        .sidebar { display: flex; flex-direction: column; gap: 24px; margin-top: 20px; }
        .widget { background: var(--bg-surface); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-soft); }
        .widget-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }
        .widget-header i { color: var(--primary); font-size: 1.2rem; }
        .widget-header h3 { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); }
        .data-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid #f1f5f9; }
        .data-row:last-child { border-bottom: none; padding-bottom: 0; }
        .d-label { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
        .d-val { font-size: 0.95rem; font-weight: 700; }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 2.8rem; }
            .search-engine { flex-direction: column; border-radius: 20px; padding: 24px; gap: 16px; }
            .input-group { border-right: none; border-bottom: 1px solid var(--border-light); padding: 0 0 16px 0; width: 100%; }
            .btn-search { width: 100%; justify-content: center; }
            .category-grid { grid-template-columns: repeat(2, 1fr); }
            .slots-grid { grid-template-columns: repeat(3, 1fr); }
            .layout { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .category-grid, .slots-grid { grid-template-columns: 1fr; }
            
            .pc-card { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px; }
            .pc-main { width: 100%; }
            .pc-rank { display: none; }
            .pc-action { border-left: none; padding-left: 0; width: 100%; justify-content: space-between; border-top: 1px solid var(--border-light); padding-top: 20px; }
            .pc-btn { width: 100%; text-align: center; }
            .pc-score { flex-direction: row; gap: 8px; }
            .pc-score strong { font-size: 1.2rem; }
        }
              /* ==========================================================
   METACASINO UI V4: TRUE NATIVE APP REDESIGN (ZERO OVERFLOW)
   Tüm class'lar çakışmayı önlemek için özel dcc- eki aldı.
========================================================== */

/* 1. GÜVENLİK KALKANI: Sağa taşmaları %100 öldürür */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}
*, *:before, *:after { box-sizing: inherit; }

/* 2. LİSTE KONTEYNERİ */
.dcc-list-wrap-9x2m {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
}

/* 3. MASAÜSTÜ KART TASARIMI (Desktop Grid) */
.dcc-card-4b7q {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px -3px rgba(15, 23, 42, 0.03);
    transition: all 0.2s ease;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.dcc-card-4b7q:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -5px rgba(15, 23, 42, 0.08);
    border-color: #CBD5E1;
}

.dcc-card-4b7q.dcc-top-pick-h1v {
    border: 1px solid rgba(16, 185, 129, 0.4);
    background: linear-gradient(to right, rgba(16, 185, 129, 0.03) 0%, #FFFFFF 100%);
}

.dcc-badge-hot-6r {
    position: absolute;
    top: 0;
    right: 20px;
    background: #F59E0B;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

/* SOL: Rank + Logo */
.dcc-brand-zone-m8z {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.dcc-rank-p3w {
    font-size: 1.4rem;
    font-weight: 800;
    color: #CBD5E1;
    width: 24px;
    text-align: center;
}
.dcc-logo-bx-7t4 {
    width: 130px;
    height: 50px;
    border-radius: 6px;
    background: #000000;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dcc-logo-bx-7t4 img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ORTA: Info */
.dcc-info-zone-k5g {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
    min-width: 0; /* İçeriğin kartı genişletmesini engeller */
}
.dcc-title-line-v2f {
    display: flex;
    align-items: center;
    gap: 6px;
}
.dcc-title-link-x9d {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0F172A;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Taşarsa üç nokta koyar */
}
.dcc-icon-verify { color: #2563EB; font-size: 1.1rem; flex-shrink: 0; }

.dcc-promo-box-b4s {
    background: rgba(37, 99, 235, 0.06);
    color: #1D4ED8;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dcc-tags-row-l9x {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.dcc-tag-item-n2 {
    font-size: 0.75rem;
    font-weight: 700;
    background: #F1F5F9;
    color: #64748B;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.dcc-tag-item-n2.kyc-alert { background: rgba(16, 185, 129, 0.1); color: #059669; }

/* SAĞ: Skor ve Buton */
.dcc-action-zone-c3v {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    padding-left: 20px;
    border-left: 1px solid #E2E8F0;
}
.dcc-score-box-w1t {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}
.dcc-score-box-w1t strong { font-size: 1.5rem; font-weight: 800; color: #0F172A; }
.dcc-score-box-w1t span { font-size: 0.7rem; font-weight: 700; color: #64748B; display: flex; align-items: center; gap: 2px; margin-top: 4px; text-transform: uppercase; }
.dcc-score-box-w1t span i { color: #F59E0B; font-size: 0.9rem; }

.dcc-play-btn-f8k {
    background: #0F172A;
    color: #FFFFFF;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}
.dcc-play-btn-f8k:hover { background: #2563EB; box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3); }


/* ==========================================================
   %100 MOBİL NATIVE APP GÖRÜNÜMÜ (CSS GRID AREA BÜYÜSÜ)
   Mobilde tasarım baştan çizilir. 
========================================================== */
@media (max-width: 768px) {
    .dcc-card-4b7q {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas: 
            "logo title score"
            "promo promo promo"
            "tags tags tags"
            "btn btn btn";
        gap: 12px;
        padding: 16px;
        border-radius: 16px; /* Mobilde daha yumuşak köşe */
        align-items: center;
    }
    
    .dcc-badge-hot-6r { right: 50px; top: -1px; border-radius: 0 0 6px 6px; font-size: 0.65rem; }

    /* HTML sıralamasını bozup Grid ile dağıtıyoruz */
    .dcc-brand-zone-m8z { display: contents; } 
    .dcc-rank-p3w { display: none; } /* Mobilde yer kaplamasın */
    .dcc-logo-bx-7t4 { grid-area: logo; width: 150px; height: 50px; border-radius: 6px; padding: 6px; }

    .dcc-info-zone-k5g { display: contents; }
    .dcc-title-line-v2f { grid-area: title; }
    .dcc-title-link-x9d { font-size: 1.15rem; }
    .dcc-icon-verify { font-size: 1rem; }
    
    .dcc-promo-box-b4s { grid-area: promo; width: 100%; justify-content: center; text-align: center; padding: 10px; font-size: 0.9rem; border-radius: 10px; }
    .dcc-tags-row-l9x { grid-area: tags; width: 100%; justify-content: flex-start; }
    
    .dcc-action-zone-c3v { display: contents; }
    .dcc-score-box-w1t { grid-area: score; flex-direction: row; gap: 4px; justify-self: end; background: #FFFBEB; padding: 6px 10px; border-radius: 10px; border: 1px solid rgba(245, 158, 11, 0.2); }
    .dcc-score-box-w1t strong { font-size: 1.1rem; color: #D97706; }
    .dcc-score-box-w1t span { display: none; } /* "Trust Score" yazısını mobilde silip sadece sayı+yıldız gösteriyoruz */
    .dcc-score-box-w1t::after { content: "★"; font-family: "Phosphor-Fill"; color: #F59E0B; font-size: 0.9rem; } /* Custom icon hilesi */

    /* Buton mobilde devasa dokunma alanına dönüşür */
    .dcc-play-btn-f8k { grid-area: btn; width: 100%; padding: 14px; font-size: 1.05rem; }
}

/* ==========================================================
   BENTO BOX SEO CONTENT ALANI (SIFIR TAŞMA)
========================================================== */
.dcc-seo-panel-h7w {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 20px -5px rgba(15, 23, 42, 0.05);
    border: 1px solid #E2E8F0;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Sınırları kilitler */
    overflow-wrap: break-word; /* Uzun linkleri ve kelimeleri kırar */
    word-wrap: break-word;
}

.dcc-seo-hero-img { 
    width: 100%; 
    height: auto; 
    border-radius: 16px; 
    margin-bottom: 24px; 
    object-fit: cover; 
    display: block;
}

.dcc-seo-panel-h7w h2 { font-size: 1.8rem; color: #0F172A; font-weight: 800; margin: 32px 0 16px; line-height: 1.2; }
.dcc-seo-panel-h7w h3 { font-size: 1.3rem; color: #1E293B; font-weight: 800; margin: 24px 0 12px; }
.dcc-seo-panel-h7w p { font-size: 1.05rem; line-height: 1.7; color: #475569; margin-bottom: 20px; }

/* Mobilde Tabloların Taşmasını Engellemek İçin Kalkan */
.dcc-table-wrapper-responsive {
    width: 100%;
    max-width: 100vw;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; 
    margin: 24px 0;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    display: block; 
}
.dcc-seo-panel-h7w table {
    width: 100%;
    min-width: 500px; /* Mobilde daralmaz, kaydırılabilir olur */
    border-collapse: collapse;
}
.dcc-seo-panel-h7w table th { background: #F8FAFC; padding: 14px; text-align: left; font-weight: 800; color: #0F172A; border-bottom: 2px solid #E2E8F0; font-size: 0.9rem; }
.dcc-seo-panel-h7w table td { padding: 14px; border-bottom: 1px solid #E2E8F0; color: #475569; font-size: 0.9rem; }

@media (max-width: 768px) {
    .dcc-seo-panel-h7w { padding: 20px 16px; border-radius: 16px; }
    .dcc-seo-panel-h7w h2 { font-size: 1.4rem; margin: 20px 0 12px; }
    .dcc-seo-panel-h7w h3 { font-size: 1.15rem; }
    .dcc-seo-panel-h7w p { font-size: 0.95rem; line-height: 1.6; }
}/* ==========================================================
   ACİL MÜDAHALE: METİN TAŞMASI VE MOBİL GENİŞLİK KİLİDİ
========================================================== */

/* 1. Tüm sayfa genişliğini ekranın %100'üne sabitler, padding taşmalarını engeller */
html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

*, *::before, *::after {
    box-sizing: border-box !important;
}

/* 2. Layout (Ana Taşıyıcı) Mobilde Ekranı Yırtamaz */
@media (max-width: 768px) {
    .container.layout {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100vw !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        overflow-x: hidden !important;
    }
    
    .container.layout main, 
    .container.layout aside {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* 3. SEO Content İçindeki Metinleri Alt Satıra İnmeye ZORLAR (Büyük İhtimalle Sorun Buradaydı) */
.dcc-seo-panel-h7w {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.dcc-seo-panel-h7w p, 
.dcc-seo-panel-h7w h2, 
.dcc-seo-panel-h7w h3, 
.dcc-seo-panel-h7w li,
.dcc-seo-panel-h7w div {
    white-space: normal !important; /* Dış CSS'ten gelen kırılma yasağını ezer */
    word-wrap: break-word !important; /* Uzun kelimeleri veya URL'leri kırar */
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
}

/* ==========================================================
   MISSING CLASS DEFINITIONS — Filter Bar, Blog, Provider,
   Payment Card variants. Tasarım dili styles.css ile uyumlu.
   ========================================================== */

/* --- FILTER BAR (game-providers.php, payment-methods.php) --- */
.dcc-filter-bar-e5t,
.dcc-filter-wrap-y4p {
    background: transparent;
    margin-top: -50px;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}
.dcc-filter-inner-h2m,
.dcc-filter-inner-m9k {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--bg-surface);
    padding: 20px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

/* Pills */
.dcc-pills-wrap-j8,
.dcc-pills-v2t {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    flex: 1;
    min-width: 0;
}
.dcc-pill-btn-c3,
.dcc-pill-btn-b6r {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border: 1px solid var(--border-light);
    border-radius: 30px;
    background: var(--bg-body);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}
.dcc-pill-btn-c3:hover,
.dcc-pill-btn-b6r:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}
.dcc-pill-btn-c3.active,
.dcc-pill-btn-b6r.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.dcc-pill-btn-c3 i,
.dcc-pill-btn-b6r i { font-size: 0.95rem; }

/* Search box */
.dcc-search-box-q1w {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    min-width: 220px;
    transition: border-color 0.2s ease;
}
.dcc-search-box-q1w:focus-within { border-color: var(--primary); }
.dcc-search-box-q1w i { color: var(--text-muted); font-size: 1.1rem; }
.dcc-search-box-q1w input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 4px 0;
}

/* --- BLOG HERO (blog/*.php) --- */
.dcc-blog-hero-v1 {
    background: var(--hero-bg);
    background-image: radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 45%);
    color: var(--text-light);
    padding: 56px 0 64px;
    border-bottom: 1px solid var(--border-dark);
}
.dcc-breadcrumb-n4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}
.dcc-breadcrumb-n4 a { color: rgba(255, 255, 255, 0.8); }
.dcc-breadcrumb-n4 a:hover { color: #fff; }
.dcc-breadcrumb-n4 i { font-size: 0.75rem; }
.dcc-badge-cat-z8 {
    display: inline-block;
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(37, 99, 235, 0.4);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.dcc-blog-title-h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -1px;
    margin-bottom: 24px;
    max-width: 900px;
    color: #fff;
}
.dcc-meta-row-k2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 32px;
    margin-top: 16px;
    font-size: 0.9rem;
}
.dcc-meta-author-t6 { display: flex; align-items: center; gap: 12px; }
.dcc-meta-avatar-x9 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--border-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.dcc-meta-avatar-x9 img { width: 100%; height: 100%; object-fit: cover; }
.dcc-meta-info-c4 { display: flex; flex-direction: column; gap: 2px; line-height: 1.3; }
.dcc-meta-name { font-weight: 700; color: #fff; font-size: 0.92rem; }
.dcc-meta-title { color: #94a3b8; font-size: 0.78rem; }
.dcc-meta-stats-r3,
.dcc-meta-verified-y7 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
    font-size: 0.85rem;
}
.dcc-meta-verified-y7 i { color: var(--accent); font-size: 1rem; }
.dcc-meta-stats-r3 i { color: #94a3b8; font-size: 1rem; }

/* --- BLOG ARTICLE BODY --- */
.dcc-blog-layout-w1 {
    display: block;
    max-width: 920px;
    margin: 40px auto;
    padding: 0 24px;
}
.dcc-article-body-p8 {
    background: var(--bg-surface);
    padding: 48px 56px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}
.dcc-article-body-p8 h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--hero-bg);
    letter-spacing: -0.5px;
}
.dcc-article-body-p8 h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}
.dcc-article-body-p8 p { margin-bottom: 18px; }
.dcc-article-body-p8 ul,
.dcc-article-body-p8 ol { margin: 16px 0 24px 24px; }
.dcc-article-body-p8 li { margin-bottom: 8px; list-style: disc; }
.dcc-article-body-p8 ol li { list-style: decimal; }
.dcc-article-img-m2 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 24px 0;
    box-shadow: var(--shadow-md);
}

/* --- PROVIDER GRID/CARDS (game-providers*.php) --- */
.dcc-prov-grid-z7 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.dcc-prov-card-x1 {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.dcc-prov-card-x1:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.dcc-prov-ribbon-p4 {
    position: absolute;
    top: 0;
    right: 12px;
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 0 0 6px 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dcc-prov-head-8a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.dcc-prov-logo-w3 {
    width: 200px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-body);
    border-radius: var(--radius-md);
    padding: 10px;
    border: 1px solid var(--border-light);
}
.dcc-prov-logo-w3 img { max-width: 100%; max-height: 100%; object-fit: contain; }
.dcc-prov-info-t2 { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.dcc-prov-info-t2 h3,
.dcc-prov-info-t2 .name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}
.dcc-prov-info-t2 .meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.dcc-prov-stats-v5 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.dcc-stat-row-g6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.85rem;
}
.dcc-stat-box-y2 {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 12px;
    background: var(--bg-body);
    border-radius: var(--radius-md);
    text-align: center;
}
.dcc-stat-label-h2 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.dcc-stat-val-l8 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
}
.dcc-prov-action-f7 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s ease;
    margin-top: auto;
}
.dcc-prov-action-f7:hover { background: var(--primary-hover); }
.dcc-tags-row-b9 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.dcc-tag-g4 {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* --- PAYMENT CARDS (payment-methods.php) --- */
.dcc-pay-grid-j8n {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.dcc-pay-card-k7m {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.dcc-pay-card-k7m:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.dcc-pay-ribbon-2x {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: #fff;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dcc-pay-header-5f {
    display: flex;
    align-items: center;
    gap: 14px;
}
.dcc-pay-icon-z3 {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-body);
    border-radius: var(--radius-md);
    font-size: 1.7rem;
    color: var(--primary);
}
.dcc-pay-icon-z3 img { max-width: 70%; max-height: 70%; object-fit: contain; }
.dcc-pay-title-t9 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}
.dcc-pay-type-c4 {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.dcc-pay-stats-w1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
}
.dcc-pay-stats-w1 > div { display: flex; flex-direction: column; gap: 2px; }
.dcc-pay-stats-w1 .label,
.dcc-pay-stats-w1 small {
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
}
.dcc-pay-stats-w1 .value,
.dcc-pay-stats-w1 strong {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}
.dcc-pay-btn-p5 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s ease;
    margin-top: auto;
}
.dcc-pay-btn-p5:hover { background: var(--primary-hover); }

/* --- LOAD MORE / NO RESULTS --- */
.dcc-load-wrap-n1 { text-align: center; margin: 32px 0; }
.dcc-btn-load-o8 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}
.dcc-btn-load-o8:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}
.dcc-no-results-0m {
    text-align: center;
    padding: 60px 24px;
    color: var(--text-muted);
    background: var(--bg-surface);
    border: 1px dashed var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
}

/* --- CASINO VIEW BUTTONS / META --- */
.dcc-btn-view-m6 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-surface);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}
.dcc-btn-view-m6:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.dcc-casino-count-q9 {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

/* --- RESPONSIVE TWEAKS --- */
@media (max-width: 768px) {
    .dcc-filter-inner-h2m,
    .dcc-filter-inner-m9k {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 12px;
    }
    .dcc-pills-wrap-j8,
    .dcc-pills-v2t { overflow-x: auto; flex-wrap: nowrap; }
    .dcc-pill-btn-c3,
    .dcc-pill-btn-b6r { flex-shrink: 0; }
    .dcc-search-box-q1w { width: 100%; min-width: 0; }
    .dcc-blog-title-h1 { font-size: 1.85rem; }
    .dcc-article-body-p8 { padding: 28px 20px; font-size: 1rem; }
    .dcc-article-body-p8 h2 { font-size: 1.35rem; }
    .dcc-prov-grid-z7,
    .dcc-pay-grid-j8n { grid-template-columns: 1fr; }
    .dcc-meta-row-k2 { gap: 16px; }
}

/* ==========================================================
   CONTACT PAGE STYLES
   ========================================================== */
 
.hero .c-icon {
    font-size: 3.5rem;
    color: #60a5fa;
    margin-bottom: 16px;
    display: inline-block;
}
 
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
    margin: -60px 0 80px;
    position: relative;
    z-index: 5;
}
 
/* --- FORM BOX (sol kart) --- */
.form-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.form-box h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hero-bg);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
}
.form-box h2 i { color: var(--primary); }
 
.form-group {
    position: relative;
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-body);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
    outline: none;
}
.form-control::placeholder { color: #94a3b8; font-weight: 400; }
.form-control:focus {
    border-color: var(--primary);
    background: var(--bg-surface);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
textarea.form-control {
    min-height: 140px;
    resize: vertical;
    padding-left: 16px;
    line-height: 1.6;
}
.form-group > i.ph-bold {
    position: absolute;
    left: 14px;
    top: 41px;
    color: var(--text-muted);
    font-size: 1.15rem;
    pointer-events: none;
    transition: color 0.2s ease;
}
.form-group:focus-within > i.ph-bold { color: var(--primary); }
 
.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    margin-top: 8px;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}
 
/* --- INFO BOX (sağ sütun) --- */
.info-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
}
.info-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--hero-bg);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.2px;
}
.info-card h3 i { color: var(--primary); }
 
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-row:first-of-type { padding-top: 0; }
.contact-row > i {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-size: 1.15rem;
}
.contact-row > div { flex: 1; min-width: 0; }
.contact-row h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.3;
}
.contact-row p,
.contact-row a {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    word-break: break-word;
}
.contact-row a:hover { color: var(--primary); }
 
/* --- SECURITY CARD (uyarı kartı) --- */
.security-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(239, 68, 68, 0.04));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.security-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #b45309;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.security-card h4 i { color: var(--warning); font-size: 1.3rem; }
.security-card p {
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.6;
}
 
/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: -40px;
        margin-bottom: 60px;
    }
    .form-box { padding: 28px 22px; }
    .info-card { padding: 24px; }
    .form-box h2 { font-size: 1.3rem; }
}