/* ==============================================
   SAVOYBETTING - Production Grade CSS
   ============================================== */

:root {
    /* Renk Paleti - Lüks koyu mavi + altın */
    --bg-deep: #0a1929;
    --bg-dark: #0f2a44;
    --bg-card: #142d4a;
    --bg-soft: #1a3a5c;
    --gold: #d4af37;
    --gold-light: #f0c75e;
    --gold-soft: #b8932e;
    --text: #f5f7fa;
    --text-muted: #a8b8cf;
    --text-dim: #7a8aa5;
    --accent: #4cb5ff;
    --success: #2ecc71;
    --danger: #e74c3c;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --radius: 12px;
    --radius-lg: 20px;
    --container: 1200px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Background pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at top left, rgba(212, 175, 55, 0.08), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(76, 181, 255, 0.05), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text);
}
.logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--bg-deep);
    font-weight: 900;
    font-size: 1.4rem;
    display: grid;
    place-items: center;
    border-radius: 8px;
    font-family: var(--font-display);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    margin: 0 auto;
}
.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.cta-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--bg-deep);
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover {
    color: var(--bg-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-dark);
        padding: 1.5rem;
        gap: 1rem;
        transform: translateY(-200%);
        transition: transform 0.3s;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.is-open { transform: translateY(0); }
    .menu-toggle { display: flex; }
    .cta-btn { padding: 0.5rem 0.9rem; font-size: 0.8rem; }
    .logo-text { display: none; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gold);
    top: -100px;
    right: -100px;
    animation: orb-float 12s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    animation: orb-float 15s ease-in-out infinite reverse;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}
.hero h1 .accent {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-lead strong { color: var(--gold-light); font-weight: 600; }

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--bg-deep);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}
.btn-primary:hover {
    color: var(--bg-deep);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}
.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    background: var(--bg-card);
    color: var(--gold-light);
    border-color: var(--gold);
}
.btn-lg { padding: 1.2rem 2.5rem; font-size: 1.1rem; }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; position: relative; }
.section-alt { background: var(--bg-dark); }

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}
.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.section-head h2,
.prose h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}
.section-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== PROSE (text content) ===== */
.prose {
    max-width: 900px;
    margin: 0 auto;
}
.prose h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--gold-light);
}
.prose p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.prose strong { color: var(--gold-light); font-weight: 600; }
.prose ul, .prose ol {
    color: var(--text-muted);
    margin: 1rem 0 1.5rem 1.5rem;
}
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--gold); text-decoration: underline; }

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    position: relative;
}
.feature-card p {
    color: var(--text-muted);
    position: relative;
    font-size: 0.95rem;
}

/* ===== STEPS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    list-style: none;
    counter-reset: step;
}
.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}
.step-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}
.step h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== BONUS ===== */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.bonus-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-soft));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}
.bonus-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}
.bonus-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--bg-deep);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}
.bonus-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin: 1rem 0 0.5rem;
}
.bonus-amount {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.bonus-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== FAQ ===== */
.faq {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--gold-soft); }
.faq-item summary {
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    position: relative;
    padding-right: 3rem;
    font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-soft));
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
}
.cta-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    position: relative;
}
.cta-section .btn { position: relative; }

/* ===== PAGE HERO (alt sayfalar) ===== */
.page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-deep));
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
    font-weight: 800;
}
.page-hero .lead {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.breadcrumb {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
    font-size: 0.9rem;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span[aria-hidden] { margin: 0 0.5rem; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}
.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
}
.contact-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.contact-card a {
    color: var(--gold);
    font-weight: 600;
    word-break: break-all;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #050f1a;
    padding: 4rem 0 1.5rem;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer-title {
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}
.footer-col p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-links {
    list-style: none;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.responsible {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.age-badge {
    display: inline-block;
    background: var(--danger);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.1rem;
}
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ===== UTILITIES ===== */
@media (max-width: 600px) {
    .hero { padding: 3rem 0; }
    .section { padding: 3rem 0; }
    .hero-stats { gap: 1.5rem; }
    .stat-num { font-size: 1.8rem; }
    .features-grid, .bonus-grid, .steps { grid-template-columns: 1fr; }
}

/* Print Stilleri */
@media print {
    .site-header, .site-footer, .hero-bg { display: none; }
    body { background: white; color: black; }
}

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