﻿*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:         #0d1117;
    --surface:    #161b22;
    --surface2:   #1c2128;
    --border:     #30363d;
    --text:       #e6edf3;
    --muted:      #8b949e;
    --green:      #3fb950;
    --green-bg:   #0d2318;
    --red:        #f85149;
    --red-bg:     #2d1117;
    --yellow:     #e3b341;
    --yellow-bg:  #272115;
    --accent:     #58a6ff;
    --accent-dim: rgba(88,166,255,.12);
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

/* ── HEADER ─────────────────────────────────────────────────────── */
header {
    background: #000;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}
.logo span { color: var(--text); }
.logo-img { display: block; }



nav { display: flex; align-items: center; gap: 20px; }

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
}
.nav-link:hover { color: var(--text); }

.btn-nav {
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid rgba(88,166,255,.3);
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s;
}
.btn-nav:hover { background: rgba(88,166,255,.22); }

/* ── SHARED BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #0d1117;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: opacity .2s;
}
.btn-primary:hover { opacity: .85; }
.btn-primary.btn-large { padding: 16px 40px; font-size: 17px; }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ── SECTION SHARED ──────────────────────────────────────────────── */
.section-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; }

.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.section-sub {
    color: var(--muted);
    text-align: center;
    margin-bottom: 36px;
    font-size: 14px;
}

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
    text-align: center;
    padding: 90px 24px 80px;
    max-width: 780px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid rgba(88,166,255,.25);
    border-radius: 20px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.accent { color: var(--accent); }

.hero-sub {
    font-size: 20px;
    color: var(--muted);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-desc {
    color: var(--muted);
    font-size: 15px;
    max-width: 620px;
    margin: 0 auto 18px;
}

.hero-cta-text {
    color: var(--text);
    font-size: 15px;
    font-style: italic;
    margin-bottom: 36px;
    opacity: .8;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── LIVE STATS ──────────────────────────────────────────────────── */
.live-stats {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 24px;
}

.live-stats-inner { max-width: 900px; margin: 0 auto; }

.ls-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.live-dot-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: .05em;
}

.live-dot {
    width: 9px;
    height: 9px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .4; transform: scale(1.4); }
}

.ls-sub { font-size: 13px; color: var(--muted); }

.ls-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ls-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    min-width: 110px;
    flex: 1;
}

.ls-card-wide { flex: 2; min-width: 200px; }

.ls-lbl {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}

.ls-val { font-size: 28px; font-weight: 800; }

.c-accent { color: var(--accent); }
.c-green  { color: var(--green); }
.c-red    { color: var(--red); }
.c-yellow { color: var(--yellow); }

.rate-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 10px;
}

.rate-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), #39d353);
    border-radius: 3px;
    width: 0%;
    transition: width .8s ease;
}

/* ── SON SİNYALLER ───────────────────────────────────────────────── */
.recent-signals {
    padding: 64px 0;
}

.sig-wrap {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin-bottom: 24px;
}

.sig-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 40px;
    color: var(--muted);
    justify-content: center;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

#sigTbl { width: max-content; min-width: 100%; border-collapse: collapse; }

#sigTbl thead th {
    background: var(--surface);
    padding: 10px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

#sigTbl tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
#sigTbl tbody tr:last-child { border-bottom: none; }
#sigTbl tbody tr:hover { background: rgba(255,255,255,.03); }

#sigTbl tbody td {
    padding: 12px 16px;
    font-size: 13px;
    white-space: nowrap;
}

.symb-link { font-weight: 700; color: var(--accent); text-decoration: none; }
.symb-link:hover { text-decoration: underline; }

.price { font-family: 'Courier New', monospace; }

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}
.b-hit     { background: var(--green-bg);  color: var(--green);  border: 1px solid var(--green); }
.b-missed  { background: var(--red-bg);    color: var(--red);    border: 1px solid var(--red); }
.b-pending { background: var(--yellow-bg); color: var(--yellow); border: 1px solid var(--yellow); }

.sig-cta { text-align: center; }

/* ── FEATURES ────────────────────────────────────────────────────── */
.features {
    padding: 64px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.feat-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    flex: 1;
    min-width: 150px;
    max-width: 180px;
    transition: border-color .2s;
}
.feat-card:hover { border-color: var(--accent); }

.feat-icon { font-size: 32px; margin-bottom: 12px; }
.feat-text { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── PERFORMANCE ─────────────────────────────────────────────────── */
.performance { padding: 80px 0; }

.perf-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.perf-text { flex: 1; min-width: 260px; }

.perf-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
}

.perf-rate {
    font-size: 72px;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px;
}

.perf-text h2 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.perf-text p  { color: var(--muted); margin-bottom: 12px; }

.perf-disclaimer { font-size: 12px; color: var(--border); }

.perf-visual {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
}

.perf-circle {
    position: relative;
    width: 180px;
    height: 180px;
}
.perf-circle svg { width: 100%; height: 100%; }
.perf-circle-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    color: var(--green);
}

/* ── PLANS ───────────────────────────────────────────────────────── */
.plans {
    padding: 80px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.plans-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.plan-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    flex: 1;
    min-width: 260px;
    max-width: 360px;
    position: relative;
}

.plan-featured {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(88,166,255,.12);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #0d1117;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 14px;
    border-radius: 20px;
    letter-spacing: .05em;
}

.plan-name { font-size: 16px; font-weight: 700; margin-bottom: 8px; }

.plan-price {
    font-size: 40px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 4px;
    line-height: 1;
}

.plan-period { font-size: 16px; font-weight: 500; color: var(--muted); }

.plan-desc { color: var(--muted); font-size: 13px; margin: 12px 0 20px; }

.plan-features {
    list-style: none;
    margin-bottom: 28px;
}

.plan-features li {
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.plan-features li::before { content: "✓  "; color: var(--green); font-weight: 700; }
.plan-features li:last-child { border-bottom: none; }

.btn-plan-free {
    display: block;
    text-align: center;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: border-color .2s;
}
.btn-plan-free:hover { border-color: var(--accent); color: var(--accent); }

.btn-plan-paid {
    display: block;
    text-align: center;
    background: var(--accent);
    color: #0d1117;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: opacity .2s;
}
.btn-plan-paid:hover { opacity: .85; }

/* ── REFERRAL ────────────────────────────────────────────────────── */
.referral { padding: 80px 0; }

.referral-card {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.ref-icon { font-size: 48px; margin-bottom: 16px; }

.referral-card h2 { font-size: 26px; font-weight: 800; margin-bottom: 10px; }

.ref-sub { color: var(--muted); margin-bottom: 32px; }

.ref-how-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: 16px;
}

.ref-steps {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
    display: inline-block;
}

.ref-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    counter-increment: steps;
}
.ref-steps li:last-child { border-bottom: none; }
.ref-steps li::before {
    content: counter(steps);
    counter-reset: none;
    background: var(--accent);
    color: #0d1117;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}
.ref-steps { counter-reset: steps; }

.ref-reward {
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 28px;
}

/* ── BOTTOM CTA ──────────────────────────────────────────────────── */
.bottom-cta {
    padding: 100px 0;
    text-align: center;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.bottom-cta h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.bottom-cta p  { color: var(--muted); max-width: 540px; margin: 0 auto 28px; }

.cta-points {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
    font-size: 14px;
    color: var(--green);
    font-weight: 600;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer {
    background: #000;
    border-top: 1px solid var(--border);
    padding: 32px 24px;
    text-align: center;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.footer-text {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
    margin: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    header { padding: 12px 16px; }
    nav .nav-link { display: none; }

    .hero { padding: 60px 16px 50px; }

    .ls-card { min-width: 130px; }
    .ls-val   { font-size: 22px; }

    .perf-inner { flex-direction: column; gap: 32px; text-align: center; }
    .perf-rate  { font-size: 52px; }
    .perf-visual { flex: none; }

    .referral-card { padding: 36px 20px; }

    .bottom-cta { padding: 70px 0; }
    .bottom-cta h2 { font-size: 24px; }

    .section-title { font-size: 22px; }

    .feat-card { max-width: 160px; }
}
