:root {
    --navy: #0b0f1a; --navy-light: #131a2b; --card: #171f33;
    --gold: #c9a227; --gold-light: #e0c158; --teal: #1b9aa0; --teal-light: #3fc4cb;
    --text: #e8ecf4; --text-muted: #9aa3b8; --border: #262f45;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background: var(--navy); color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { border-bottom: 1px solid var(--border); position: sticky; top: 0; background: rgba(11,15,26,0.92); backdrop-filter: blur(8px); z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 20px; }
.logo-link img { height: 40px; }
.site-nav { display: flex; gap: 24px; flex: 1; justify-content: center; }
.site-nav a { color: var(--text-muted); font-weight: 600; font-size: 14px; padding: 6px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a.active { color: var(--gold-light); border-color: var(--gold); }
.nav-cta { background: var(--teal); color: white; padding: 10px 20px; border-radius: 10px; font-weight: 700; font-size: 14px; white-space: nowrap; }
.nav-cta:hover { background: var(--teal-light); }

/* Hero */
.hero { text-align: center; padding: 60px 20px; }
.hero h1 {
    font-size: clamp(28px, 5vw, 44px);
    background: linear-gradient(90deg, var(--gold-light), var(--teal-light));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    margin-bottom: 16px;
}
.hero p { color: var(--text-muted); font-size: 18px; max-width: 600px; margin: 0 auto 32px; }
.cta-btn {
    display: inline-block; background: var(--teal); color: white;
    padding: 16px 36px; border-radius: 12px; font-weight: 700; font-size: 18px;
}
.cta-btn:hover { background: var(--teal-light); }
.cta-btn-gold { background: var(--gold); color: var(--navy); }
.cta-btn-gold:hover { background: var(--gold-light); }

/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; padding: 40px 20px; max-width: 1100px; margin: 0 auto; }
.feature { background: var(--navy-light); border-radius: 16px; padding: 28px; border: 1px solid var(--border); }
.feature .icon { font-size: 32px; margin-bottom: 12px; }
.feature h3 { color: var(--gold-light); margin-bottom: 8px; font-size: 18px; }
.feature p { color: var(--text-muted); font-size: 14px; }

/* Generic page */
.page-wrap { max-width: 800px; margin: 0 auto; padding: 60px 20px; }
.page-wrap h1 { font-size: 32px; margin-bottom: 20px; color: var(--gold-light); }
.page-wrap h2 { font-size: 20px; margin: 28px 0 12px; color: var(--teal-light); }
.page-wrap p { color: var(--text-muted); margin-bottom: 14px; font-size: 15px; }
.page-wrap ul { color: var(--text-muted); margin: 0 0 14px 20px; font-size: 15px; }

/* Widget wrapper (axtar.php) */
.widget-page { max-width: 1000px; margin: 0 auto; padding: 40px 20px; }
.widget-page h1 { text-align: center; font-size: 28px; margin-bottom: 8px; color: var(--gold-light); }
.widget-page .subtitle { text-align: center; color: var(--text-muted); margin-bottom: 32px; }
.widget-box { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; min-height: 200px; }
.widget-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }

/* Contact form */
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; margin-top: 24px; }
.contact-form label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
    width: 100%; background: var(--navy); border: 1px solid var(--border); color: var(--text);
    padding: 12px 14px; border-radius: 10px; font-size: 14px; margin-bottom: 16px;
}
.contact-form button { background: var(--gold); color: var(--navy); border: none; padding: 14px 28px; border-radius: 10px; font-weight: 700; cursor: pointer; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 50px 0 30px; margin-top: 60px; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; }
.footer-col h4 { color: var(--gold-light); margin-bottom: 12px; font-size: 15px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 8px; }
.footer-col a:hover { color: var(--teal-light); }
.footer-col p { color: var(--text-muted); font-size: 14px; }
