html,body{
    margin:0;
    padding:0;
}
.header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#1e272e;
    margin:0;           /* EKLE */
    border:0;           /* EKLE */
}
/* ===============================
   GLOBAL RESET
=============================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f6fa;
    color: #2d3436;
    line-height: 1.6;
}

/* ===============================
   CONTAINER
=============================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ===============================
   HEADINGS
=============================== */
h1, h2, h3 {
    margin-bottom: 16px;
}

/* ===============================
   BUTTONS
=============================== */
.btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    color: #fff;
}

.btn-danger {
    background: #ff6b6b;
    color: #fff;
}

.btn-warning {
    background: #feca57;
    color: #000;
}

/* ===============================
   CARDS
=============================== */
.card {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    margin-bottom: 16px;
}

/* ===============================
   GRID
=============================== */
.grid {
    display: grid;
    gap: 18px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ===============================
   CATEGORY TABS
=============================== */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tabs a {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    background: #ecf0f1;
    color: #2d3436;
}

.tabs a.active {
    background: #1dd1a1;
    color: #fff;
}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 768px) {

    .container {
        padding: 14px;
    }

    h1, h2 {
        font-size: 20px;
    }

    .card {
        padding: 14px;
    }
}
/* ===============================
   DASHBOARD CARD
=============================== */
.dashboard-card{
    background: var(--card);
    border:1px solid var(--border);
    border-radius:18px;
    padding:18px;
    box-shadow:0 10px 24px rgba(0,0,0,.06);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.dashboard-card.locked{
    background:linear-gradient(135deg,#f1f2f6,#ffffff);
}

.dashboard-card .card-header{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    font-weight:900;
    margin-bottom:8px;
}

.dashboard-card .card-icon{
    font-size:20px;
}

.dashboard-card .card-body p{
    font-size:13px;
    color:var(--muted);
    line-height:1.45;
}

.dashboard-card .card-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:14px;
}

.card-status{
    font-size:12px;
    font-weight:700;
    color:#a4a4a4;
}

.card-cta{
    padding:8px 14px;
    border-radius:14px;
    background:linear-gradient(135deg,#f5d98b,#e7c766);
    color:#111;
    font-size:12px;
    font-weight:900;
    text-decoration:none;
}


.notes-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 15px;
}

.notes-container h1 {
    text-align: center;
    margin-bottom: 30px;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.note-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: 0.2s ease;
}

.note-card:hover {
    transform: translateY(-5px);
}

.note-card h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.note-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.note-date {
    font-size: 12px;
    opacity: 0.6;
}

/* Ã°Å¸Å’â„¢ GECE MODU */

body.dark-mode .note-card {
    background: #1e1e1e;
    box-shadow: 0 5px 18px rgba(0,0,0,0.5);
}

body.dark-mode .note-card h2,
body.dark-mode .note-card p,
body.dark-mode .note-date {
    color: #ffffff;
}
.page-title {
    font-size: 28px;
    margin-bottom: 25px;
}

.score-block {
    margin-bottom: 40px;
}
.scorer{
    color:#ffd800;
    font-weight:900;
}

.scorer{
    color:#ffd800;
    font-weight:900;
}

.score-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4f4f4;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.match-name {
    font-weight: 700;
    font-size: 20px;
    color: #8f6bff;
}

.scores {
    display: flex;
    gap: 10px;
}

.score-box {
    width: 90px;
    text-align: center;
    border-radius: 10px;
    padding: 10px 5px;
    color: #fff;
    font-weight: bold;
}

.score-value {
    font-size: 22px;
}

.score-label {
    font-size: 12px;
    opacity: 0.9;
}

/* RENKLER */
.babi { background: linear-gradient(135deg,#5f6dfc,#8f6bff); }
.bilg { background: linear-gradient(135deg,#2ecc71,#27ae60); }
.zlatna { background: linear-gradient(135deg,#ff7b00,#ff3c00); }

/* PREMIUM UYARI */
.premium-lock {
    background: #111;
    color: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
}

.btn-premium {
    display: inline-block;
    margin-top: 10px;
    background: #ffb400;
    color: #000;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: bold;
}

/* GECE MODU */
body.dark .score-row {
    background: #1f1f1f;
}

body.dark .match-name {
    color: #fff;
}
.match-card {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.match-header {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.match-time {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.analysis-box {
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}
.match-card {
    background: linear-gradient(145deg, #1a1a1a, #242424);
    padding: 22px;
    margin-bottom: 25px;
    border-radius: 18px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

.match-card:hover {
    transform: translateY(-3px);
}

.match-header {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.match-league {
    font-size: 13px;
    opacity: 0.6;
    margin-bottom: 8px;
}

.match-time {
    font-size: 14px;
    opacity: 0.8;
}
.prediction-card {
    background:#1a1a1a;
    padding:15px;
    border-radius:10px;
    margin-bottom:15px;
    position:relative;
}

.card-header {
    display:flex;
    align-items:center;
    gap:10px;
}

.avatar {
    width:40px;
    height:40px;
    border-radius:50%;
    object-fit:cover;
}

.author-name {
    font-weight:bold;
}

.match {
    font-size:16px;
    font-weight:bold;
    margin-top:10px;
}

.selection {
    margin-top:5px;
}

.odd {
    margin-top:5px;
    opacity:0.8;
}

.status {
    position:absolute;
    top:15px;
    right:15px;
    font-weight:bold;
}

/* ===============================
   RESET â€” boÅŸluk sorununu kÃ¶kten Ã§Ã¶zer
=============================== */
html,body{
    margin:0;
    padding:0;
}

/* ===============================
   HEADER boÅŸluk fix
=============================== */
.header{
    margin:0 !important;
    border:0 !important;
}

/* BAR */
#liveScoreBar{
    position:sticky;
    top:56px;
    height:46px;
    background:#000;
    color:#fff;
    overflow:hidden;
    z-index:9999;
    border-bottom:1px solid #111;
}

/* görünür alan */
.live-viewport{
    position:relative;
    width:100%;
    height:46px;
    overflow:hidden;
}

/* kayan içerik */
.live-track{
    position:absolute;
    top:0;
    left:0;
    height:46px;

    display:flex;
    align-items:center;
    gap:48px;
    white-space:nowrap;
}
#liveClone{
    position:absolute;
    top:0;
    left:0;
    height:46px;

    display:flex;
    align-items:center;
    gap:48px;
    white-space:nowrap;
}


/* maç */
.live-match{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-weight:600;
}

.live-minute{
    color:#00ffae;
    font-weight:700;
}

.live-score{
    background:#ffd800;
    color:#000;
    padding:2px 6px;
    border-radius:4px;
    font-weight:800;
}

/* ================= GOAL OVERLAY ================= */

#goalOverlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.94);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    pointer-events:none;
    transition:.25s;
}

#goalOverlay.show{
    opacity:1;
}

.goal-inner{
    font-size:22px;
    font-weight:800;
    letter-spacing:.5px;
}

.goal-title{
    color:#00ff6a;
    margin-right:14px;
    animation:pulse .5s infinite alternate;
}

@keyframes pulse{
    from{opacity:1;}
    to{opacity:.4;}
}

/* ===============================
   ISTATISTIK SAYFASI (IZOLE)
=============================== */

.stats-container{
    max-width:1500px;
    margin:30px auto;
    padding:0 32px;
}

/* Başlık */
.stats-container .page-title{
    font-size:22px;
    font-weight:700;
    color:#111;
    margin-bottom:18px;
}

/* GRID — Masaüstü 5 kolon */
.stats-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

/* Kart */
.stat-box{
    background:#0f172a;
    border-radius:12px;
    padding:16px;
    border:1px solid #1e293b;
    min-height:300px;
}

/* Başlık */
.stat-box h2{
    font-size:13px;
    color:#facc15;
    margin-bottom:12px;
    font-weight:700;
}

/* Satır */
.team-row{
    display:grid;
    grid-template-columns:22px 1fr 56px;
    gap:8px;
    align-items:center;
    margin-bottom:10px;
}

/* Sıra */
.rank{
    font-size:11px;
    color:#64748b;
}

/* Takım */
.team{
    font-size:13px;
    color:#e2e8f0;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}

/* Oran */
.ratio{
    text-align:right;
    font-variant-numeric:tabular-nums;
}

.ratio strong{
    display:block;
    color:#22c55e;
    font-size:15px;
    font-weight:700;
}

.ratio span{
    display:block;
    color:#94a3b8;
    font-size:11px;
}

/* Bar */
.bar{
    grid-column:1/-1;
    height:4px;
    background:#1e293b;
    border-radius:8px;
    margin-top:4px;
}

.fill{
    height:100%;
    border-radius:8px;
}

/* ===============================
   TABLET
=============================== */
@media(max-width:1300px){
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* ===============================
   MOBILE
=============================== */
@media(max-width:700px){

    .stats-container{
        padding:0 14px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }
}

/* ===============================
   STATS ANALYZER (IZOLE MODÜL)
   hiçbir şeyi bozmaz
=============================== */

.stats-analyzer{
    background:#0b1220;
    border:1px solid #1f2937;
    border-radius:14px;
    padding:22px;
    margin:25px 0 30px 0;
}

/* başlık */
.stats-analyzer-title{
    color:#facc15;
    font-size:18px;
    font-weight:700;
    margin-bottom:18px;
}

/* filtre satırı */
.stats-analyzer-controls{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:18px;
}

/* select'leri izole ediyoruz */
.stats-analyzer-controls select{
    background:#020617;
    border:1px solid #1f2937;
    color:#e5e7eb;
    padding:9px 12px;
    border-radius:8px;
    min-width:180px;
    font-size:13px;
}

/* sonuç kutusu */
.stats-analyzer-output{
    background:#020617;
    border-radius:10px;
    padding:14px 16px;
}

/* oyuncu satırı */
.stats-analyzer-row{
    display:flex;
    justify-content:space-between;
    padding:8px 0;
    border-bottom:1px solid #111827;
    font-size:13px;
}

.stats-analyzer-row:last-child{
    border-bottom:none;
}

.stats-analyzer-row strong{
    color:#22c55e;
}

/* mobile */
@media(max-width:768px){
    .stats-analyzer-controls{
        flex-direction:column;
    }

    .stats-analyzer-controls select{
        width:100%;
    }
}

.premium-signals{
    margin-bottom:30px;
}

.signal-card{
    background:#0f172a;
    border-radius:12px;
    padding:18px;
    margin-bottom:15px;
}

.signal-card.gold{
    border:2px solid gold;
    box-shadow:0 0 20px rgba(255,215,0,0.3);
}

.signal-card.strong{
    border:1px solid #3b82f6;
}

.premium-locked{
    background:#0f172a;
    border-radius:12px;
    padding:25px;
    text-align:center;
    margin-bottom:30px;
    border:1px solid #1f2937;
}

.premium-btn{
    display:inline-block;
    margin-top:15px;
    padding:8px 16px;
    background:gold;
    color:black;
    font-weight:600;
    border-radius:6px;
    text-decoration:none;
}
/* =========================
   102 ANALİZ RENK FIX
========================= */

.premium-signals h2{
    color:#facc15;
}

.signal-card h3{
    color:#ffffff;
}

.signal-card p{
    color:#cbd5e1;
}

.signal-card small{
    color:#94a3b8;
}

/* Analyzer üst panel */
.stats-analyzer-title{
    color:#facc15 !important;
}

.stats-analyzer-output{
    color:#e2e8f0 !important;
}

.player-row span{
    color:#e2e8f0 !important;
}

.player-row strong{
    color:#22c55e !important;
}

.coupon-page-title{

font-size:24px;

margin-bottom:20px;

font-weight:700;

}



/* grid */

.coupon-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:20px;

}



/* kutu */

.coupon-box{

background:#fff;

border-radius:10px;

overflow:hidden;

box-shadow:0 6px 18px rgba(0,0,0,.08);

transition:.25s;

}


.coupon-box:hover{

transform:translateY(-3px);

}



/* üst başlık */

.coupon-head{

background:#3d474f;

color:#fff;

padding:10px 14px;

font-weight:700;

display:flex;

justify-content:space-between;

align-items:center;

border-bottom:3px solid #f1c40f;

}


.coupon-title{

font-size:16px;

color:#f1c40f;

font-weight:800;

}



/* yazar */

.coupon-writer{

font-size:15px;

font-weight:700;

gap:10px;

}


.coupon-writer img{

width:34px;
height:34px;

border-radius:50%;

border:2px solid rgba(255,255,255,.15);

object-fit:cover;

}



/* maçlar */

.coupon-body{

padding:10px 14px;

}


.coupon-row{

display:flex;

justify-content:space-between;

padding:8px 0;

border-bottom:1px solid #eee;

font-size:14px;

}


.coupon-row small{

color:#00a8ff;

font-weight:600;

}


.odd{

background:#f1f2f6;

padding:4px 8px;

border-radius:4px;

font-weight:700;

}



/* alt */

.coupon-footer{

background:#3d474f;

display:flex;

justify-content:space-between;

align-items:center;

padding:10px 14px;

}


.total{

color:#fff;

font-size:24px;

}


.total b{

font-size:23px;

margin-left:5px;

}


.play-btn{

background:#0aa35a;

color:#fff;

padding:8px 16px;

border-radius:6px;

text-decoration:none;

font-weight:700;

}


.play-btn:hover{

background:#07914f;

}



/* mobil */

@media(max-width:768px){

.coupon-grid{

grid-template-columns:1fr;

}

}

.coupon-page-title{

max-width:900px;
margin:0 auto 20px;

padding:0 10px;

}



/* container */

.coupon-grid{

max-width:900px;

margin:auto;

display:grid;

grid-template-columns:1fr 1fr;

gap:22px;

padding:0 10px;

}


.coupon-box{

border-radius:12px;

box-shadow:

0 10px 30px rgba(0,0,0,.12),

0 2px 6px rgba(0,0,0,.08);

}

.coupon-row{

font-size:24px;

font-weight:600;

padding:10px 0;

}



.coupon-row small{

font-size:18px;

font-weight:700;

color:#0abde3;

}



.odd{

font-size:24px;

padding:5px 9px;

}

.play-btn{

padding:9px 18px;

font-size:14px;

border-radius:8px;

box-shadow:0 4px 10px rgba(0,0,0,.15);

}

@media(max-width:768px){

.coupon-grid{

grid-template-columns:1fr;

max-width:500px;

}

}

.coupon-head{

padding:12px 16px;

min-height:48px;

}

.coupon-writer span{

opacity:.95;

letter-spacing:.3px;

}


/* YAZAR BLOĞU BÜYÜT */

.coupon-writer{

display:flex !important;

align-items:center;

gap:12px;

font-size:17px !important;

font-weight:700;

}



/* AVATAR BÜYÜT */

.coupon-writer img{

width:42px !important;

height:42px !important;

border-radius:50%;

border:2px solid rgba(255,255,255,.18);

object-fit:cover;

}



/* İSİM */

.coupon-writer span{

font-size:17px !important;

letter-spacing:.4px;

}

.coupon-writer img{

box-shadow:0 2px 6px rgba(0,0,0,.25);

}