/* ============================================================
   VEGASSLOT — RESMİ TEMA / PREMIUM CASINO STILI
   ============================================================ */

/* ---------- RESET & ROOT ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4a853;
    --gold-light: #f0d080;
    --gold-glow: rgba(212, 168, 83, 0.25);
    --bg-dark: #0b0a0c;
    --bg-card: #141214;
    --bg-card-hover: #1d1a1e;
    --border: #2a262b;
    --text: #f5f0eb;
    --muted: #a09898;
    --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --radius: 20px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    padding: 0 20px;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: var(--gold-light);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ---------- UTILITY ---------- */
.gold {
    color: var(--gold);
}
.text-muted {
    color: var(--muted);
}
.section-tag {
    display: inline-block;
    background: rgba(212, 168, 83, 0.12);
    color: var(--gold);
    padding: 4px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(212, 168, 83, 0.15);
}
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.section-sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 3rem;
    font-size: 1.15rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: linear-gradient(145deg, var(--gold), #b8922f);
    color: #0b0a0c;
    box-shadow: 0 4px 24px var(--gold-glow);
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 168, 83, 0.45);
    background: var(--gold-light);
    color: #000;
}
.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 168, 83, 0.05);
}

/* ---------- HEADER ---------- */
header {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(11, 10, 12, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text);
}
.logo span {
    color: var(--gold);
}
nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    position: relative;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
}
nav a:hover::after {
    width: 100%;
}
nav a:hover {
    color: var(--text);
}
.nav-actions {
    display: flex;
    gap: 12px;
}
.nav-actions .btn-primary,
.nav-actions .btn-secondary {
    padding: 8px 22px;
    font-size: 0.85rem;
}
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 4px 8px;
}

/* ---------- HERO ---------- */
.hero {
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.hero h1 {
    font-size: clamp(2.4rem, 6.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero h1 .highlight {
    background: linear-gradient(145deg, var(--gold-light), #b8922f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto 30px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 60px;
    margin: 30px 0 40px;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- TRUST BADGES ---------- */
.section-trust {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-top: 20px;
}
.trust-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: border 0.2s, transform 0.2s;
}
.trust-item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.trust-item .icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 12px;
}
.trust-item h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}
.trust-item p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
}

/* ---------- GAME SHOWCASE ---------- */
.section-games {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: default;
}
.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}
.game-card .thumb {
    background: #1f1c20;
    border-radius: 12px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.6rem;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}
.game-card h3 {
    font-size: 1.3rem;
}
.game-card .provider {
    color: var(--muted);
    font-size: 0.85rem;
}
.game-card .tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.game-card .tags span {
    background: rgba(212, 168, 83, 0.12);
    color: var(--gold);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- BONUS TABS ---------- */
.section-bonus {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 12px 32px;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 1rem;
}
.tab-btn.active {
    background: var(--gold);
    color: #0b0a0c;
    border-color: var(--gold);
    box-shadow: 0 4px 24px var(--gold-glow);
}
.tab-btn:hover:not(.active) {
    border-color: var(--gold);
    color: var(--text);
}
.tab-content {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    animation: fadeIn 0.35s ease;
}
.tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.bonus-card {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}
.bonus-detail h3 {
    font-size: 2.2rem;
    color: var(--gold);
}
.bonus-detail p {
    color: var(--muted);
    max-width: 500px;
}
.bonus-features {
    list-style: none;
    margin-top: 16px;
}
.bonus-features li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bonus-features li::before {
    content: "✦";
    color: var(--gold);
}

/* ---------- TESTIMONIALS ---------- */
.section-testimonials {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border 0.2s;
}
.testimonial-card:hover {
    border-color: var(--gold);
}
.testimonial-card .stars {
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 4px;
}
.testimonial-card blockquote {
    font-style: italic;
    color: var(--text);
    margin: 16px 0;
    font-size: 1rem;
    line-height: 1.6;
}
.testimonial-card .author {
    font-weight: 600;
}
.testimonial-card .badge {
    color: var(--gold);
    font-size: 0.75rem;
    background: rgba(212, 168, 83, 0.15);
    padding: 2px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 4px;
}

/* ---------- ALL GUIDES (REHBERLER) ---------- */
.section-guides {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
.filter-btn.active {
    background: var(--gold);
    color: #0b0a0c;
    border-color: var(--gold);
}
.filter-btn:hover:not(.active) {
    border-color: var(--gold);
    color: var(--text);
}
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.guide-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}
.guide-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold);
    transform: translateX(4px);
}
.guide-item .icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}
.guide-item a {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    line-height: 1.3;
}
.guide-item a:hover {
    color: var(--gold);
}
.guide-item .cat-tag {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold);
    background: rgba(212, 168, 83, 0.1);
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: auto;
    white-space: nowrap;
}

/* ---------- FAQ ---------- */
.section-faq {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border 0.2s;
}
.faq-item:hover {
    border-color: rgba(212, 168, 83, 0.3);
}
.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    color: var(--text);
}
.faq-question:hover {
    background: #1e1b1f;
}
.faq-question .icon {
    font-size: 1.6rem;
    color: var(--gold);
    transition: transform 0.3s;
    line-height: 1;
}
.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 24px 20px;
    color: var(--muted);
    line-height: 1.7;
    display: none;
}
.faq-item.open .faq-answer {
    display: block;
}

/* ============================================================
   FOOTER — PREMIUM VERSİYON
   ============================================================ */

footer {
    margin-top: 40px;
    padding: 50px 0 30px;
    border-top: 2px solid rgba(212, 168, 83, 0.15);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0e10 100%);
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

/* Footer sütun başlıkları */
.footer-grid h4 {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    position: relative;
}
.footer-grid h4::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin-top: 8px;
    border-radius: 4px;
}

/* Footer linkleri */
.footer-grid a {
    display: block;
    color: var(--muted);
    padding: 6px 0;
    transition: all 0.2s ease;
    font-weight: 400;
}
.footer-grid a:hover {
    color: var(--gold);
    padding-left: 6px;
}

/* Marka sütunu özel */
.footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.footer-brand p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 240px;
}

/* ----- ALT BÖLÜM (bottom) ----- */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

/* Güven rozetleri */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 4px;
}
.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 16px;
    border-radius: 40px;
    border: 1px solid var(--border);
    letter-spacing: 0.3px;
}
.badge-item:hover {
    border-color: var(--gold);
}

/* Telif */
.copyright {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 4px 0;
}

/* Ödeme ikonları */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 8px;
    font-size: 0.85rem;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 24px;
    border-radius: 60px;
    border: 1px solid var(--border);
}
.payment-icons span {
    padding: 0 2px;
}
.payment-icons .sep {
    color: var(--border);
    font-weight: 100;
}
.payment-icons span:not(.sep):hover {
    color: var(--gold);
    cursor: default;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
    }
    .footer-brand .logo {
        text-align: center;
    }
    .footer-brand div {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .footer-grid h4::after {
        margin: 8px auto 0;
    }
    .footer-grid a:hover {
        padding-left: 0;
        transform: scale(1.02);
    }
    .footer-badges {
        gap: 10px;
    }
    .badge-item {
        font-size: 0.7rem;
        padding: 2px 12px;
    }
    .payment-icons {
        padding: 6px 14px;
        font-size: 0.75rem;
        gap: 2px 4px;
        border-radius: 40px;
    }
    .payment-icons .sep {
        display: none;
    }
    .payment-icons span {
        background: var(--bg-card);
        padding: 2px 10px;
        border-radius: 20px;
        border: 1px solid var(--border);
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .guides-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        padding: 0 12px;
    }
    .hamburger {
        display: block;
    }
    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding-top: 16px;
        border-top: 1px solid var(--border);
        margin-top: 8px;
    }
    nav.open {
        display: flex;
    }
    nav a {
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
    }
    nav a::after {
        display: none;
    }
    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .nav-actions .btn-primary,
    .nav-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
    .hero-stats {
        gap: 24px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bonus-card {
        flex-direction: column;
        text-align: center;
    }
    .bonus-detail p {
        max-width: 100%;
    }
    .filter-buttons {
        gap: 6px;
    }
    .filter-btn {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    .guides-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .game-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
