/* ═══════════════════════════════════════════════════════════════
   DenemeBonuscu 2026 - Premium Dark Theme
   Modern, SEO-Optimized, Elite Design
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --gold-dark: #d97706;
    --gold-glow: rgba(245, 158, 11, 0.3);
    --accent: #6366f1;
    --accent-light: #818cf8;
    --accent-glow: rgba(99, 102, 241, 0.3);
    --green: #10b981;
    --green-glow: rgba(16, 185, 129, 0.3);
    --red: #ef4444;
    --red-glow: rgba(239, 68, 68, 0.3);
    --cyan: #06b6d4;
    --pink: #ec4899;

    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1629;
    --bg-card: #131a2e;
    --bg-card-hover: #1a2548;
    --bg-glass: rgba(19, 26, 46, 0.85);
    --bg-glass-hover: rgba(24, 32, 64, 0.9);

    --text-primary: #f8fafc;
    --text-secondary: #a8b8cc;
    --text-muted: #64748b;

    --border: rgba(148, 163, 184, 0.1);
    --border-gold: rgba(245, 158, 11, 0.3);
    --border-accent: rgba(99, 102, 241, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 20px rgba(245, 158, 11, 0.15);
    --shadow-accent: 0 4px 20px rgba(99, 102, 241, 0.15);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Sen', 'Plus Jakarta Sans', 'Inter', sans-serif;

    --header-height: 72px;
    --container: 1280px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: var(--gold); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ── Background Effects ── */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 600px 400px at 20% 10%, rgba(99, 102, 241, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 500px 350px at 80% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 50% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── Container ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════
   HEADER & NAVIGATION
   ══════════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
    transition: all 0.3s ease;
}
.header.scrolled {
    background: rgba(10, 14, 26, 0.98);
    box-shadow: var(--shadow-lg);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}
.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-gold);
}
.logo span { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
}
.nav a:hover, .nav a.active {
    color: var(--gold);
    background: rgba(245, 158, 11, 0.08);
}
.nav a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--gold);
    border-radius: var(--radius-full);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════ */
.hero {
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease;
}
.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}
.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), #fde68a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 32px;
    animation: fadeInUp 1s ease;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    animation: fadeInUp 1.2s ease;
}
.hero-stat {
    text-align: center;
}
.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}
.hero-stat .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ══════════════════════════════════════
   SITE CARDS
   ══════════════════════════════════════ */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.site-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}
.site-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    background: var(--bg-card-hover);
}
.site-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(245,158,11,0.05), var(--bg-card));
}
.site-card.featured::before {
    content: '⭐ ÖNE ÇIKAN';
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 20px 0;
}
.card-logo {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    object-fit: contain;
    background: #ffffff;
    border: 1px solid var(--border);
    flex-shrink: 0;
    padding: 6px;
}
.card-title-area {
    flex: 1;
    min-width: 0;
}
.card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-license {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.card-license .dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}
.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}
.card-rating .stars {
    color: var(--gold);
    font-size: 0.85rem;
}
.card-rating .score {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
}

.card-body { padding: 16px 20px; }

.card-bonuses {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bonus-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.bonus-row:hover {
    border-color: var(--border-gold);
    background: rgba(245, 158, 11, 0.05);
}
.bonus-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
}
.bonus-value {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
}
.bonus-value.highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1rem;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}
.tag {
    padding: 4px 10px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--accent-light);
}
.tag.green {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--green);
}
.tag.gold {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--border-gold);
    color: var(--gold);
}

.card-footer {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}
.btn-primary {
    flex: 1;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.3);
    color: #000;
}
.btn-outline {
    flex: 1;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245, 158, 11, 0.05);
}

/* ══════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════ */
.section { padding: 60px 0; }
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-title .icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green);
}

/* ══════════════════════════════════════
   CATEGORY FILTER TABS
   ══════════════════════════════════════ */
.filter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 24px;
    scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.filter-tab:hover, .filter-tab.active {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}
.filter-tab .count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    margin-left: 6px;
}

/* ══════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: var(--border-gold);
}
.faq-question {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    gap: 12px;
}
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 18px;
}
.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ══════════════════════════════════════
   CONTENT SECTION (SEO TEXT)
   ══════════════════════════════════════ */
.content-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 40px;
}
.content-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.content-section h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--gold);
}
.content-section p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    font-size: 0.95rem;
}
.content-section ul {
    margin: 12px 0 20px 20px;
}
.content-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.92rem;
}
.content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}
.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.content-section table th {
    background: var(--bg-secondary);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gold);
    border-bottom: 1px solid var(--border);
}
.content-section table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.content-section table tr:hover td {
    background: rgba(245, 158, 11, 0.03);
}

/* ══════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 0.85rem;
}
.breadcrumb a {
    color: var(--text-muted);
}
.breadcrumb a:hover {
    color: var(--gold);
}
.breadcrumb .sep {
    color: var(--text-muted);
    font-size: 0.75rem;
}
.breadcrumb .current {
    color: var(--text-secondary);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 12px;
    line-height: 1.7;
}
.footer h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.88rem;
    padding: 4px 0;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-muted);
}
.footer-bottom .age-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-full);
    color: var(--red);
    font-weight: 700;
    font-size: 0.78rem;
}

/* ══════════════════════════════════════
   DETAIL PAGE STYLES
   ══════════════════════════════════════ */
.detail-hero {
    padding: 40px 0;
}
.detail-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.detail-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    object-fit: contain;
    background: #ffffff;
    border: 2px solid var(--border-gold);
    flex-shrink: 0;
    padding: 8px;
}
.detail-info { flex: 1; }
.detail-info h1 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}
.detail-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.detail-meta-item strong {
    color: var(--text-primary);
}
.detail-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}
.detail-bonus-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
}
.info-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
}
.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}
.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--text-muted); }
.info-row .value { color: var(--text-primary); font-weight: 600; }

/* ══════════════════════════════════════
   PROS/CONS
   ══════════════════════════════════════ */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}
.pros, .cons {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
}
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid var(--red); }
.pros h4, .cons h4 {
    font-weight: 700;
    margin-bottom: 14px;
}
.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }
.pros li, .cons li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ══════════════════════════════════════
   SIMILAR SITES
   ══════════════════════════════════════ */
.similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 20px;
}
.similar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}
.similar-item:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
}
.similar-item img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    background: #ffffff;
    padding: 3px;
}
.similar-item .name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-primary);
}
.similar-item .bonus {
    font-size: 0.78rem;
    color: var(--gold);
}

/* ══════════════════════════════════════
   SCROLL TO TOP
   ══════════════════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-gold);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .sites-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 4px;
        border-left: 1px solid var(--border);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    .nav.open { right: 0; }
    .nav a {
        padding: 14px 16px;
        border-radius: var(--radius-md);
        width: 100%;
    }
    .hero h1 { font-size: 1.75rem; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat .number { font-size: 1.5rem; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .detail-header { flex-direction: column; align-items: center; text-align: center; }
    .detail-cta { align-items: center; }
    .detail-meta { justify-content: center; }
    .pros-cons { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .content-section { padding: 24px; }
    .filter-tabs { gap: 6px; }
}
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .hero { padding: 40px 0 60px; }
    .card-header { padding: 16px 16px 0; }
    .card-body { padding: 12px 16px; }
    .card-footer { padding: 0 16px 16px; }
    .btn { padding: 10px 18px; font-size: 0.82rem; }
}

/* ── Touch-friendly improvements ── */
@media (hover: none) and (pointer: coarse) {
    .btn { min-height: 48px; min-width: 48px; }
    .nav a { padding: 12px 16px; }
    .filter-tab { padding: 12px 20px; }
    .faq-question { padding: 20px; min-height: 48px; }
    .bonus-row { padding: 12px 14px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .animate-in { opacity: 1; transform: none; }
}

/* ── Print styles ── */
@media print {
    .header, .footer, .scroll-top, .menu-toggle, .btn, .filter-tabs { display: none !important; }
    body { background: #fff; color: #000; }
    .content-section { border: 1px solid #ccc; }
}

/* ── Focus indicators (Accessibility) ── */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
.btn:focus-visible {
    box-shadow: 0 0 0 3px var(--gold-glow);
}

/* ── Cookie consent bar ── */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar p { font-size: 0.85rem; color: var(--text-secondary); flex: 1; }
.cookie-bar .btn { flex-shrink: 0; }

/* ── Warning box (for responsible gambling page) ── */
.warning-box {
    background: rgba(239, 68, 68, 0.08);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-left: 4px solid var(--red);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 24px 0;
}
.warning-box h4 { color: var(--red); margin-bottom: 8px; }
.warning-box p { color: var(--text-secondary); font-size: 0.9rem; }

/* ── Contact form ── */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Info boxes for detail pages ── */
.info-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    margin: 16px 0;
}
.info-highlight .emoji { font-size: 1.5rem; flex-shrink: 0; }
.info-highlight .text { font-size: 0.9rem; color: var(--text-secondary); }

/* ── Load More Button ── */
.load-more-wrap {
    text-align: center;
    padding: 32px 0 16px;
}
.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.load-more-btn:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.load-more-btn .remaining {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
}
.site-card.hidden-card { display: none; }
