/* Ezekiel AI - Public CSS */
.ezekiel-public { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; max-width:1100px; margin:24px auto; color:#0f172a; }
.ezekiel-pub-header { display:flex; align-items:baseline; gap:14px; margin-bottom:16px; }
.ezekiel-pub-header .logo { font-size:24px; font-weight:800; background:linear-gradient(135deg,#0ea5e9,#22c55e); -webkit-background-clip:text; background-clip:text; color:transparent; }
.ezekiel-pub-header .title { font-size:18px; color:#475569; font-weight:600; }

.ezekiel-pub-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:18px; }
.ezekiel-pred-card { background:#fff; border:1px solid #e5e7eb; border-radius:16px; padding:22px; box-shadow:0 4px 12px rgba(15,23,42,.06); position:relative; overflow:hidden; transition:transform .15s; }
.ezekiel-pred-card:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(15,23,42,.10); }
.ezekiel-pred-card.conf-high { border-top:4px solid #16a34a; }
.ezekiel-pred-card.conf-mid  { border-top:4px solid #eab308; }
.ezekiel-pred-card.conf-low  { border-top:4px solid #94a3b8; }
.ezekiel-pred-card .rank-badge { position:absolute; top:14px; right:14px; background:linear-gradient(135deg,#0ea5e9,#22c55e); color:#fff; font-weight:800; padding:4px 10px; border-radius:8px; font-size:13px; }
.ezekiel-pred-card .league { color:#64748b; font-size:12px; text-transform:uppercase; letter-spacing:.5px; font-weight:600; margin-bottom:14px; }

.ezekiel-pred-card .teams { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:12px; margin-bottom:16px; }
.ezekiel-pred-card .team { display:flex; flex-direction:column; align-items:center; gap:8px; font-size:14px; font-weight:600; text-align:center; }
.ezekiel-pred-card .team img { width:42px; height:42px; object-fit:contain; }
.ezekiel-pred-card .score-box { display:flex; flex-direction:column; align-items:center; gap:2px; padding:0 8px; }
.ezekiel-pred-card .score { background:#0f172a; color:#22c55e; font-weight:800; padding:8px 14px; border-radius:8px; font-size:22px; min-width:60px; text-align:center; }
.ezekiel-pred-card .vs { font-size:10px; color:#94a3b8; text-transform:uppercase; letter-spacing:1px; }
.ezekiel-pred-card .kickoff { color:#475569; font-size:13px; margin-bottom:14px; }
.ezekiel-pred-card .confidence { margin-top:8px; }
.ezekiel-pred-card .conf-bar { width:100%; height:10px; background:#f1f5f9; border-radius:6px; overflow:hidden; margin-bottom:6px; }
.ezekiel-pred-card .conf-fill { height:100%; background:linear-gradient(90deg,#0ea5e9,#22c55e); transition:width .6s; }
.ezekiel-pred-card .conf-num { font-weight:800; color:#0f172a; }
.ezekiel-pred-card .conf-num small { font-weight:500; color:#64748b; margin-left:6px; }
.ezekiel-pred-card .locked { margin-top:10px; background:#dbeafe; color:#1e40af; padding:6px 10px; border-radius:6px; font-size:12px; font-weight:700; text-align:center; }

.ezekiel-disclaimer { font-size:11px; color:#94a3b8; margin-top:18px; text-align:center; line-height:1.5; }

.ezekiel-hist-table { width:100%; border-collapse:collapse; }
.ezekiel-hist-table th, .ezekiel-hist-table td { padding:8px 10px; border-bottom:1px solid #f1f5f9; text-align:left; font-size:14px; }
.ezekiel-hist-table th { background:#f8fafc; font-weight:700; }
.ezekiel-hist-table tr.result-win { background:rgba(34,197,94,.06); }
.ezekiel-hist-table tr.result-loss { background:rgba(220,38,38,.04); }

.ezekiel-stats-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:14px; }
.ezekiel-stats-grid .stat-card { background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:16px; text-align:center; }
.ezekiel-stats-grid .label { display:block; color:#64748b; font-size:12px; text-transform:uppercase; }
.ezekiel-stats-grid .value { display:block; font-size:26px; font-weight:800; margin-top:4px; }
.ezekiel-stats-grid .win .value { color:#16a34a; }
.ezekiel-stats-grid .loss .value { color:#dc2626; }
.ezekiel-stats-grid .rate .value { color:#0ea5e9; }

@media (max-width:640px){ .ezekiel-stats-grid { grid-template-columns:repeat(2,1fr); } }
