/*
Theme Name: BettingWin Pro
Theme URI: https://example.com/
Author: OpenAI
Author URI: https://openai.com/
Description: İçerik odaklı, SEO uyumlu, modern WordPress tema.
Version: 1.0.0
Text Domain: bettingwin-pro
*/

:root{
  --bg:#f7f8fb;
  --surface:#ffffff;
  --text:#172033;
  --muted:#5e6b84;
  --line:#e7ebf3;
  --primary:#1d4ed8;
  --primary-dark:#153ba1;
  --soft:#eff6ff;
  --good:#0f766e;
  --bad:#b91c1c;
  --dark:#0f172a;
  --shadow:0 10px 30px rgba(15,23,42,.06);
  --radius:18px;
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  line-height:1.75;
  font-size:16px;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--primary);text-decoration:none}
a:hover{text-decoration:underline}
figure{margin:0 0 1.25rem}
table{width:100%;border-collapse:collapse}
th,td{padding:14px 16px;border:1px solid var(--line);text-align:left}
th{background:#f8fafc}
blockquote{
  margin:1.5rem 0;
  padding:1rem 1.25rem;
  border-left:4px solid var(--primary);
  background:#f8fbff;
  border-radius:12px;
}
pre,code{
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
}
pre{
  overflow:auto;
  padding:16px;
  border-radius:14px;
  background:#0f172a;
  color:#fff;
}
.container{
  width:min(100% - 32px,var(--container));
  margin-inline:auto;
}

.site-topbar{
  background:var(--dark);
  color:#cbd5e1;
  font-size:14px;
}
.site-topbar .container{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
}

.site-header{
  position:sticky;
  top:0;
  z-index:99;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}
.site-branding{
  display:flex;
  align-items:center;
  gap:12px;
}
.site-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:12px;
  background:var(--soft);
  color:var(--primary);
  font-weight:800;
  font-size:18px;
}
.site-title{
  font-size:20px;
  font-weight:800;
  color:var(--text);
}
.site-description{
  font-size:13px;
  color:var(--muted);
}

.main-navigation ul{
  display:flex;
  align-items:center;
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
}
.main-navigation a{
  color:var(--muted);
  font-weight:600;
  font-size:15px;
}
.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:14px;
  font-weight:700;
  border:1px solid transparent;
  transition:.2s ease;
  text-decoration:none !important;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:var(--primary);
  color:#fff;
  box-shadow:var(--shadow);
}
.btn-primary:hover{background:var(--primary-dark)}
.btn-secondary{
  background:#fff;
  color:var(--text);
  border-color:var(--line);
}

.site-main{
  padding:30px 0 40px;
}
.content-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:24px;
}
.main-column,
.sidebar-column{
  min-width:0;
}

.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card-body{
  padding:28px;
}

.hero-card{
  display:grid;
  grid-template-columns:1.25fr .85fr;
  gap:28px;
  padding:28px;
  margin-bottom:24px;
}
.eyebrow{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--primary);
  background:var(--soft);
  padding:8px 12px;
  border-radius:999px;
  margin-bottom:14px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}
.hero-summary{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.summary-box{
  padding:14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
}
.summary-box small{
  display:block;
  color:var(--muted);
  margin-bottom:4px;
  font-weight:700;
}
.summary-box strong{
  font-size:16px;
}

.entry-card{
  margin-bottom:24px;
}
.entry-header{
  margin-bottom:18px;
}
.entry-title,
.page-title{
  font-size:clamp(28px,4vw,42px);
  line-height:1.2;
  margin:0 0 12px;
}
.entry-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  font-size:14px;
  color:var(--muted);
}
.entry-thumbnail{
  margin:18px 0 20px;
  overflow:hidden;
  border-radius:18px;
}
.entry-content h2,
.entry-content h3,
.entry-content h4{
  line-height:1.25;
  color:#0f172a;
}
.entry-content h2{font-size:32px;margin:34px 0 14px}
.entry-content h3{font-size:24px;margin:28px 0 12px}
.entry-content h4{font-size:20px;margin:24px 0 10px}
.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content table,
.entry-content blockquote{
  margin-bottom:18px;
}
.entry-content ul,
.entry-content ol{
  padding-left:22px;
}
.entry-content .alignleft{
  float:left;
  margin:0 20px 16px 0;
}
.entry-content .alignright{
  float:right;
  margin:0 0 16px 20px;
}
.entry-content::after{
  content:"";
  display:block;
  clear:both;
}

.quick-boxes{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin:18px 0 22px;
}
.quick-box{
  border:1px solid var(--line);
  background:#fff;
  border-radius:16px;
  padding:16px;
}
.quick-box span{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-bottom:5px;
  font-weight:700;
}
.quick-box strong{
  display:block;
  font-size:16px;
}

.pros-cons{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin:24px 0;
}
.pros-box,.cons-box{
  padding:18px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
}
.pros-box h3{color:var(--good);margin-top:0}
.cons-box h3{color:var(--bad);margin-top:0}

.notice-box{
  border:1px solid #dbeafe;
  background:#f8fbff;
  border-radius:16px;
  padding:18px;
  margin:22px 0;
}

.archive-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.post-card{
  overflow:hidden;
}
.post-card-thumb img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
}
.post-card-body{
  padding:20px;
}
.post-card-title{
  font-size:22px;
  line-height:1.3;
  margin:0 0 10px;
}
.post-card-excerpt{
  color:var(--muted);
  font-size:15px;
}
.post-card-meta{
  color:var(--muted);
  font-size:14px;
  margin-bottom:10px;
}

.widget{
  margin-bottom:24px;
}
.widget-title{
  font-size:18px;
  margin:0 0 14px;
}
.widget ul{
  list-style:none;
  margin:0;
  padding:0;
}
.widget li{
  padding:10px 0;
  border-bottom:1px solid var(--line);
}
.widget li:last-child{
  border-bottom:0;
}
.widget_search .search-form{
  display:flex;
  gap:10px;
}
.search-field{
  width:100%;
  min-height:46px;
  border:1px solid var(--line);
  border-radius:14px;
  padding:0 14px;
  background:#fff;
}
.search-submit{
  min-height:46px;
  padding:0 16px;
  border:0;
  border-radius:14px;
  background:var(--primary);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.breadcrumbs{
  font-size:14px;
  color:var(--muted);
  margin-bottom:16px;
}
.breadcrumbs span,
.breadcrumbs a{
  color:var(--muted);
}

.pagination{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:26px;
}
.pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  min-height:42px;
  padding:0 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  text-decoration:none;
}
.pagination .current{
  background:var(--primary);
  color:#fff;
  border-color:var(--primary);
}

.site-footer{
  background:var(--dark);
  color:#cbd5e1;
  margin-top:30px;
}
.footer-main{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:24px;
  padding:34px 0;
}
.footer-title{
  color:#fff;
  font-size:17px;
  font-weight:800;
  margin-bottom:12px;
}
.site-footer a{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:14px 0;
  font-size:14px;
  color:#cbd5e1;
}

.not-found{
  text-align:center;
  padding:30px 0;
}
.not-found h1{
  font-size:42px;
  margin-bottom:10px;
}

.screen-reader-text{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);border:0;
}

@media (max-width:1040px){
  .content-grid{grid-template-columns:1fr}
  .hero-card{grid-template-columns:1fr}
  .quick-boxes{grid-template-columns:repeat(2,1fr)}
  .footer-main{grid-template-columns:1fr}
  .archive-grid{grid-template-columns:1fr}
}
@media (max-width:760px){
  .header-inner{flex-wrap:wrap}
  .main-navigation{width:100%}
  .main-navigation ul{
    flex-wrap:wrap;
    gap:12px;
  }
  .hero-summary,
  .pros-cons,
  .quick-boxes{
    grid-template-columns:1fr;
  }
  .card-body,.hero-card{padding:20px}
  .entry-content .alignleft,
  .entry-content .alignright{
    float:none;
    margin:0 0 16px 0;
  }
}