:root {
            --bg-primary: #0b1929;
            --bg-card: #0f2137;
            --accent: #3b82f6;
            --accent-hover: #2563eb;
            --success: #22c55e;
            --success-hover: #16a34a;
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --border: #1e3a5f;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Nunito', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            line-height: 1.3;
        }

        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* HEADER */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 25, 41, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
        }
        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
        }
        .logo span { color: var(--accent); }
        .nav-links { display: flex; gap: 24px; list-style: none; }
        .nav-links a {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-secondary);
            transition: color 0.25s;
        }
        .nav-links a:hover { color: var(--accent); }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
        }
        .hamburger span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; }
        .mobile-menu {
            display: none;
            position: absolute;
            top: 68px;
            left: 0;
            right: 0;
            background: rgba(11, 25, 41, 0.97);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border);
            padding: 20px;
        }
        .mobile-menu.active { display: block; }
        .mobile-menu a {
            display: block;
            padding: 12px 0;
            color: var(--text-secondary);
            font-weight: 600;
            border-bottom: 1px solid var(--border);
        }

        /* HERO */
        .hero {
            position: relative;
            min-height: 480px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
        }
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(11,25,41,0.94) 0%, rgba(11,25,41,0.7) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 680px;
            padding: 60px 0;
        }
        .hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 18px;
        }
        .hero h1 span { color: var(--accent); }
        .hero-text {
            font-size: 1.08rem;
            color: var(--text-secondary);
            margin-bottom: 28px;
            line-height: 1.8;
        }
        .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
        .btn-success {
            display: inline-block;
            background: var(--success);
            color: #fff;
            padding: 13px 32px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-success:hover {
            background: var(--success-hover);
            box-shadow: 0 4px 20px rgba(34,197,94,0.3);
            transform: translateY(-1px);
        }
        .btn-outline {
            display: inline-block;
            background: transparent;
            color: var(--accent);
            padding: 13px 32px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            border: 2px solid var(--accent);
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-outline:hover {
            background: var(--accent);
            color: #fff;
        }

        /* SECTIONS */
        .section { padding: 70px 0; }
        .section-alt { background: rgba(15,33,55,0.5); }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
            text-align: center;
        }
        .section-title span { color: var(--accent); }
        .section-subtitle {
            color: var(--text-secondary);
            text-align: center;
            max-width: 620px;
            margin: 0 auto 50px;
            font-size: 1rem;
        }

        /* KAYIT REHBERİ */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .step-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 32px 24px;
            text-align: center;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.3s;
        }
        .step-card.visible {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .step-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.25);
        }
        .step-num {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--accent), #60a5fa);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            color: #fff;
            margin: 0 auto 18px;
        }
        .step-card h3 {
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .step-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .step-connector {
            display: none;
        }

        /* GİRİŞ YÖNTEMLERİ */
        .methods-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .method-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 32px 24px;
            opacity: 0;
            transform: translateY(30px);
        }
        .method-card.visible {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .method-card:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }
        .method-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--accent), #818cf8);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 18px;
        }
        .method-card h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .method-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* GÜVENLİK */
        .security-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .security-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 28px 20px;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
        }
        .security-card.visible {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .security-icon {
            width: 56px;
            height: 56px;
            background: rgba(59,130,246,0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 16px;
        }
        .security-card h3 { font-size: 1rem; margin-bottom: 10px; }
        .security-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

        /* BONUS TABLOSU */
        .table-wrap {
            overflow-x: auto;
            border-radius: 14px;
            border: 1px solid var(--border);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-card);
        }
        th {
            background: rgba(59,130,246,0.15);
            padding: 14px 18px;
            text-align: left;
            font-family: 'Poppins', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent);
            white-space: nowrap;
        }
        td {
            padding: 14px 18px;
            border-top: 1px solid var(--border);
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        tr:hover td { background: rgba(59,130,246,0.04); }
        .bonus-desc {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-top: 8px;
            padding: 0 4px;
        }

        /* FAQ */
        .faq-list { max-width: 820px; margin: 0 auto; }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
        }
        .faq-question {
            padding: 18px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .faq-question:hover { color: var(--accent); }
        .faq-arrow {
            font-size: 1.2rem;
            transition: transform 0.3s;
            color: var(--accent);
        }
        .faq-item.active .faq-arrow { transform: rotate(180deg); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }
        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        .faq-item.active .faq-answer { max-height: 400px; }

        /* FOOTER */
        .site-footer {
            background: #071422;
            border-top: 1px solid var(--border);
            padding: 60px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
        }
        .footer-about h4 { font-size: 1.15rem; margin-bottom: 14px; }
        .footer-about h4 span { color: var(--accent); }
        .footer-about p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.8; }
        .footer-links h4, .footer-contact h4 { font-size: 1rem; margin-bottom: 14px; }
        .footer-links ul { list-style: none; }
        .footer-links li { padding: 5px 0; }
        .footer-links a { font-size: 0.88rem; color: var(--text-secondary); transition: color 0.2s; }
        .footer-links a:hover { color: var(--accent); }
        .footer-contact p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 8px; }

        .responsible-gaming {
            background: rgba(59,130,246,0.06);
            border: 1px solid rgba(59,130,246,0.18);
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
        }
        .responsible-gaming h5 {
            font-family: 'Nunito', sans-serif;
            color: var(--accent);
            font-size: 0.92rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .responsible-gaming p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.7; }
        .age-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--accent);
            color: #fff;
            border-radius: 50%;
            font-weight: 800;
            font-size: 0.82rem;
        }
        .footer-bottom {
            border-top: 1px solid var(--border);
            padding: 20px 0;
            text-align: center;
            font-size: 0.82rem;
            color: var(--text-secondary);
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .steps-grid { grid-template-columns: repeat(2, 1fr); }
            .security-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .hero h1 { font-size: 1.8rem; }
            .methods-grid { grid-template-columns: 1fr; }
            .steps-grid { grid-template-columns: 1fr; }
            .security-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .section-title { font-size: 1.6rem; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.5rem; }
            .section { padding: 45px 0; }
        }

/* ARTICLE PAGE */
.article-main {
    padding: 60px 0;
}
.article-main .container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}
.article-content h1 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.3;
}
.article-content h2 {
    font-size: 1.5rem;
    margin-top: 36px;
    margin-bottom: 16px;
    line-height: 1.3;
}
.article-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 18px;
}
.article-content ul {
    margin: 16px 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.85;
}
.article-content ul li {
    margin-bottom: 8px;
    font-size: 1rem;
}
.article-content strong {
    color: var(--text-primary);
    font-weight: 600;
}
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.article-sidebar .sidebar-widget {
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 24px;
}
.article-sidebar .widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}
.article-sidebar .popular-list {
    list-style: none;
    padding: 0;
}
.article-sidebar .popular-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.article-sidebar .popular-list li:last-child {
    border-bottom: none;
}
.article-sidebar .popular-list a {
    color: var(--text-secondary);
    font-size: 0.92rem;
    transition: color 0.25s;
}
.article-sidebar .popular-list a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .article-main .container {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .article-content h1 {
        font-size: 1.7rem;
    }
    .article-content h2 {
        font-size: 1.25rem;
    }
}
