/* =======================================================
   PromoTips — Front-end styles
   Blue gradient, light, card-based
   ======================================================= */

:root {
	--bg: #f4f7fb;
	--bg-soft: #e9f0fa;
	--ink: #0c1a2b;
	--ink-2: #38506e;
	--muted: #6b7f97;
	--line: #dfe8f3;
	--line-2: #eef3f9;
	--surface: #ffffff;
	--surface-2: #f9fbfe;

	--blue-50:  #eff5ff;
	--blue-100: #dbe8fe;
	--blue-500: #3b82f6;
	--blue-600: #2563eb;
	--blue-700: #1d4ed8;
	--blue-900: #0b255d;

	--win:         #16a34a;
	--win-soft:    #dcfce7;
	--lose:        #dc2626;
	--lose-soft:   #fee2e2;
	--pending:     #ca8a04;
	--pending-soft:#fef3c7;

	--radius: 16px;
	--shadow-sm: 0 1px 2px rgba(14,30,59,.06), 0 1px 3px rgba(14,30,59,.04);
	--shadow:    0 4px 14px rgba(16,40,80,.06), 0 2px 4px rgba(16,40,80,.04);
	--shadow-lg: 0 18px 45px -18px rgba(16,40,80,.25), 0 8px 18px -6px rgba(16,40,80,.10);

	--font-display: 'Outfit', system-ui, -apple-system, sans-serif;
	--font-body:    'Manrope', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.promotips-site {
	font-family: var(--font-body);
	background: var(--bg);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	min-height: 100vh;
	display: flex; flex-direction: column;
	background-image:
		radial-gradient(1200px 600px at 80% -100px, rgba(59,130,246,.09), transparent 60%),
		radial-gradient(900px 500px at -10% 200px, rgba(6,182,212,.07), transparent 60%);
}
img { max-width: 100%; height: auto; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }

.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
	height: 1px; margin: -1px; overflow: hidden; padding: 0;
	position: absolute; width: 1px; word-wrap: normal !important;
}
.skip-link:focus {
	position: fixed; top: 8px; left: 8px; z-index: 100;
	background: #fff; color: var(--blue-700); padding: 8px 14px;
	border-radius: 8px; clip: auto; width: auto; height: auto;
}

/* =============== HEADER =============== */
.pt-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255,255,255,.78);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--line);
}
.pt-header__inner {
	max-width: 1240px; margin: 0 auto; padding: 14px 24px;
	display: flex; align-items: center; gap: 18px;
}
.pt-brand__link {
	display: flex; align-items: center; gap: 12px;
	text-decoration: none; color: var(--ink);
}
.pt-brand__mark {
	width: 40px; height: 40px; border-radius: 12px;
	background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
	color: #fff; display: grid; place-items: center;
	box-shadow: 0 6px 16px -4px rgba(59,130,246,.45);
	font-size: 18px;
}
.pt-brand__name {
	font-family: var(--font-display); font-weight: 900; font-size: 20px;
	letter-spacing: -0.02em; display: block;
}
.pt-brand__tag {
	font-size: 11px; color: var(--muted); font-weight: 600;
	letter-spacing: .04em; text-transform: uppercase; display: block;
}

.pt-nav { margin-left: auto; }
.pt-nav__menu {
	list-style: none; margin: 0; padding: 0;
	display: flex; gap: 6px; align-items: center;
}
.pt-nav__menu a {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 9px 14px; border-radius: 10px;
	font-size: 14px; font-weight: 600; color: var(--ink-2);
	transition: all .2s ease; text-decoration: none;
	border: 1px solid transparent;
}
.pt-nav__menu a:hover, .pt-nav__menu .current-menu-item a {
	color: var(--blue-700); background: var(--blue-50);
	border-color: var(--blue-100);
}

.pt-menu-toggle {
	display: none; margin-left: auto;
	width: 40px; height: 40px; border-radius: 10px;
	background: #fff; border: 1px solid var(--line); cursor: pointer;
	flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.pt-menu-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 820px) {
	.pt-nav {
		position: absolute; top: 100%; left: 0; right: 0;
		background: #fff; border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow);
		display: none;
	}
	.pt-nav.is-open { display: block; }
	.pt-nav__menu { flex-direction: column; padding: 12px; gap: 4px; }
	.pt-nav__menu a { width: 100%; }
	.pt-menu-toggle { display: flex; }
}

/* =============== MAIN =============== */
.pt-main { flex: 1; }
.pt-container {
	max-width: 1240px; width: 100%;
	margin: 0 auto; padding: 28px 24px 48px;
}

/* =============== HERO =============== */
.pt-hero {
	width: 100%;
	position: relative; overflow: hidden;
	padding: 56px 48px 48px;
	background: linear-gradient(135deg, #0b255d 0%, #1d4ed8 55%, #2563eb 100%);
	color: #fff;
	box-shadow: var(--shadow-lg);
}
/* Hero is always full-width, inner content centered */
.pt-hero__inner { max-width: 1240px; margin: 0 auto; }
.pt-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.pt-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }
.pt-blob.b1 { width: 380px; height: 380px;
	background: radial-gradient(circle, #60a5fa, transparent 60%);
	top: -120px; right: -80px; }
.pt-blob.b2 { width: 320px; height: 320px;
	background: radial-gradient(circle, #22d3ee, transparent 60%);
	bottom: -140px; left: -80px; opacity: .4; }
.pt-hero__grid {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
	background-size: 44px 44px;
	-webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
	mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
}
.pt-hero__inner { position: relative; z-index: 1; max-width: 820px; }
.pt-badge-pill {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 12px; border-radius: 999px;
	background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
	font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
	-webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.pt-hero__title {
	font-family: var(--font-display);
	font-size: clamp(40px, 6vw, 68px);
	line-height: 0.98; letter-spacing: -0.035em;
	font-weight: 900; margin: 18px 0 14px;
}
.pt-hero__title em {
	font-style: normal; font-weight: 800;
	background: linear-gradient(180deg, #bfdbfe, #60a5fa);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.pt-hero__sub {
	font-size: 16px; max-width: 560px;
	color: rgba(255,255,255,.82); line-height: 1.6;
	margin: 0 0 28px;
}
.pt-hero__stats { display: flex; flex-wrap: wrap; gap: 10px; }
.pt-stat {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 10px 14px; border-radius: 12px;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.18);
	-webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.pt-stat__icon {
	width: 28px; height: 28px; border-radius: 8px;
	background: rgba(255,255,255,.14); display: grid; place-items: center;
	font-size: 13px;
}
.pt-stat__v { font-family: var(--font-display); font-weight: 800; font-size: 18px; line-height: 1; }
.pt-stat__l { font-size: 11px; color: rgba(255,255,255,.72);
	text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; font-weight: 600; }
.pt-stat.win .pt-stat__icon { background: rgba(34,197,94,.22); color: #86efac; }
.pt-stat.lose .pt-stat__icon { background: rgba(239,68,68,.22); color: #fca5a5; }
.pt-stat.accent .pt-stat__icon { background: rgba(250,204,21,.22); color: #fde047; }

.pt-page-hero {
	border-radius: 20px; padding: 40px 32px;
	background: linear-gradient(135deg, #fff 0%, #eaf2fc 100%);
	border: 1px solid var(--line);
	margin-bottom: 24px;
}
.pt-page-hero .pt-badge-pill {
	background: var(--blue-50); color: var(--blue-700);
	border-color: var(--blue-100);
}
.pt-page-hero__title {
	font-family: var(--font-display); font-weight: 800;
	font-size: clamp(32px, 4.5vw, 44px); letter-spacing: -0.025em;
	margin: 14px 0 10px;
}
.pt-page-hero__sub { color: var(--ink-2); margin: 0; }

/* =============== DAY NAV =============== */
.pt-daynav {
	margin: 22px 0;
	border-radius: 14px;
	background: var(--surface);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}
.pt-daynav__scroll {
	display: flex; overflow-x: auto; padding: 10px;
	scrollbar-width: thin;
}
.pt-day {
	flex: 0 0 auto;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	min-width: 96px; padding: 10px 14px;
	border-radius: 10px; text-decoration: none;
	color: var(--ink-2); transition: all .2s ease;
	border: 1px solid transparent;
}
.pt-day:hover { background: var(--blue-50); color: var(--blue-700); text-decoration: none; }
.pt-day.is-active {
	background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
	color: #fff; box-shadow: 0 6px 14px -6px rgba(59,130,246,.55);
}
.pt-day__label { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: -0.01em; }
.pt-day__date { font-size: 11px; margin-top: 3px; opacity: .8; font-weight: 600; }

.pt-current-day {
	display: flex; gap: 8px; align-items: baseline;
	padding: 12px 16px; margin-bottom: 22px;
	background: var(--blue-50); border: 1px solid var(--blue-100);
	border-radius: 12px;
}
.pt-current-day__label {
	font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
	font-weight: 700; color: var(--blue-700);
}
.pt-current-day strong {
	font-family: var(--font-display); font-size: 15px;
	color: var(--ink);
}

/* =============== SECTIONS =============== */
.pt-section { margin-bottom: 34px; }
.pt-section__head {
	display: flex; align-items: center; gap: 10px;
	margin-bottom: 14px; padding-bottom: 12px;
	border-bottom: 1px dashed var(--line);
}
.pt-section__ico {
	width: 34px; height: 34px; border-radius: 10px;
	display: grid; place-items: center;
	background: color-mix(in srgb, var(--accent, #3b82f6) 14%, transparent);
	color: var(--accent, #3b82f6);
	font-size: 16px;
}
.pt-section__title {
	margin: 0; font-family: var(--font-display); font-weight: 800;
	font-size: 22px; letter-spacing: -0.02em; color: var(--ink);
}
.pt-section__meta {
	margin-left: auto;
	font-size: 12px; font-weight: 700; color: var(--muted);
	text-transform: uppercase; letter-spacing: .06em;
}
.pt-section__link {
	margin-left: auto;
	font-size: 13px; font-weight: 700; color: var(--blue-600);
}

/* =============== PACK GRID / CARD =============== */
.pt-pack-grid {
	display: grid; gap: 18px;
	grid-template-columns: repeat(3, 1fr);
}
/* Full-width packs span all columns */
.pt-pack.layout-full { grid-column: 1 / -1; }
/* Half packs span default 1 column — fits 3 per row */
.pt-pack.layout-half { grid-column: span 1; }

@media (max-width: 960px) {
	.pt-pack-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.pt-pack-grid { grid-template-columns: 1fr; }
	.pt-pack.layout-full,
	.pt-pack.layout-half { grid-column: span 1; }
}

.pt-pack {
	position: relative;
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px;
	box-shadow: var(--shadow);
	transition: transform .25s ease, box-shadow .25s ease;
	display: flex; flex-direction: column;
	animation: ptFadeUp .45s ease backwards;
}
.pt-pack:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pt-pack::before {
	content: ""; position: absolute; top: 0; left: 16px; right: 16px; height: 3px;
	background: var(--accent, var(--blue-600)); border-radius: 0 0 4px 4px;
}
.pt-pack.status-win  { background: linear-gradient(180deg, #fff, #f0fdf4 220%); }
.pt-pack.status-lose { background: linear-gradient(180deg, #fff, #fef2f2 220%); }

/* Ensure card content stacks properly */

.pt-pack__head {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 10px;
}
.pt-pack__type {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 5px 10px; border-radius: 999px;
	font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
	background: color-mix(in srgb, var(--accent, var(--blue-600)) 12%, transparent);
	color: var(--accent, var(--blue-600));
}
.pt-pack__type-ico { font-size: 13px; }
.pt-pack__title {
	font-family: var(--font-display); font-weight: 800;
	font-size: 20px; line-height: 1.2; margin: 0 0 14px;
	letter-spacing: -0.015em; color: var(--ink);
}

/* Badges */
.pt-badge {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 4px 9px; border-radius: 999px;
	font-size: 11px; font-weight: 800; letter-spacing: .06em;
}
.pt-badge--win     { background: var(--win-soft);     color: var(--win); }
.pt-badge--lose    { background: var(--lose-soft);    color: var(--lose); }
.pt-badge--pending { background: var(--pending-soft); color: var(--pending); }

/* Match list */
.pt-match-list {
	list-style: none; padding: 0;
	margin: 0 0 14px;
	display: flex; flex-direction: column; gap: 10px;
}
.pt-match {
	padding: 12px; border-radius: 12px;
	background: var(--surface-2); border: 1px solid var(--line-2);
	display: flex; flex-direction: column; gap: 8px;
}
.pt-match__meta {
	display: flex; justify-content: space-between; align-items: center;
	font-size: 11px; font-weight: 600;
}
.pt-match__league { color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.pt-match__time { color: var(--ink-2); }
.pt-match__teams {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	font-weight: 700; color: var(--ink); font-size: 14px;
}
.pt-team.home { text-align: left; flex: 1; }
.pt-team.away { text-align: right; flex: 1; }
.pt-vs {
	font-size: 10px; color: var(--muted); font-weight: 700;
	padding: 3px 7px; background: #fff; border: 1px solid var(--line); border-radius: 6px;
}
.pt-match__pred {
	display: flex; justify-content: space-between; align-items: center;
	padding-top: 8px; border-top: 1px dashed var(--line);
	gap: 8px; flex-wrap: wrap;
}
.pt-pred {
	font-size: 12px; font-weight: 700; color: var(--blue-700);
	flex: 1; min-width: 0;
}
.pt-odds {
	font-family: var(--font-display); font-weight: 800;
	padding: 4px 10px; border-radius: 8px;
	background: var(--blue-50); color: var(--blue-700);
	font-size: 13px; border: 1px solid var(--blue-100);
}

/* Per-match result badge */
.pt-mbadge {
	display: inline-flex; align-items: center; gap: 3px;
	padding: 3px 8px; border-radius: 999px;
	font-size: 10px; font-weight: 800; letter-spacing: .05em;
	text-transform: uppercase;
}
.pt-mbadge--win     { background: var(--win-soft);     color: var(--win); }
.pt-mbadge--lose    { background: var(--lose-soft);    color: var(--lose); }
.pt-mbadge--pending { background: var(--pending-soft); color: var(--pending); }
.pt-mbadge--ft { background: #e0e7ff; color: #4338ca; }

/* Match status stripe */
.pt-match--win  { border-left: 3px solid var(--win); }
.pt-match--lose { border-left: 3px solid var(--lose); }
.pt-match--ft   { border-left: 3px solid #4338ca; }
.pt-match--pending { border-left: 3px solid transparent; }

/* Total */
.pt-pack__total {
	display: flex; justify-content: space-between; align-items: center;
	padding: 10px 14px; border-radius: 10px;
	background: linear-gradient(135deg, var(--ink), var(--blue-900));
	color: #fff; font-size: 12px; font-weight: 700;
	letter-spacing: .04em; text-transform: uppercase;
}
.pt-pack__total-val {
	font-family: var(--font-display); font-size: 16px;
	color: #bfdbfe; letter-spacing: 0;
}

/* Sponsor */
.pt-sponsor {
	margin-top: 14px; padding: 14px;
	border-radius: 12px;
	background:
		linear-gradient(135deg, rgba(59,130,246,.06), rgba(34,211,238,.06)),
		var(--surface);
	border: 1px dashed var(--blue-100);
}
.pt-sponsor__head {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 11px; font-weight: 600; color: var(--muted);
	text-transform: uppercase; letter-spacing: .06em;
}
.pt-sponsor__head strong { color: var(--blue-700); font-weight: 800; margin-left: 2px; }
.pt-sponsor__bonus {
	margin: 6px 0 10px;
	font-weight: 700; color: var(--ink);
	font-size: 14px;
}
.pt-sponsor__btn {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 10px 16px; border-radius: 10px;
	background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
	color: #fff !important; font-weight: 700; font-size: 13px;
	text-decoration: none !important;
	box-shadow: 0 6px 16px -6px rgba(59,130,246,.6);
	transition: transform .2s ease, box-shadow .2s ease;
}
.pt-sponsor__btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -8px rgba(59,130,246,.7); }

@keyframes ptFadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.pt-pack-grid .pt-pack:nth-child(1) { animation-delay: .02s; }
.pt-pack-grid .pt-pack:nth-child(2) { animation-delay: .08s; }
.pt-pack-grid .pt-pack:nth-child(3) { animation-delay: .14s; }
.pt-pack-grid .pt-pack:nth-child(4) { animation-delay: .20s; }
.pt-pack-grid .pt-pack:nth-child(5) { animation-delay: .26s; }

/* =============== ARCHIVE CARDS =============== */
.pt-archive-grid {
	display: grid; gap: 12px;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.pt-archive-card {
	display: flex; flex-direction: column; gap: 4px;
	padding: 16px;
	background: var(--surface); border: 1px solid var(--line);
	border-radius: 12px; text-decoration: none !important;
	box-shadow: var(--shadow-sm);
	transition: all .2s ease;
	color: var(--ink);
}
.pt-archive-card:hover {
	border-color: var(--blue-100);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}
.pt-archive-card__date {
	font-family: var(--font-display); font-weight: 800;
	font-size: 22px; color: var(--blue-700); letter-spacing: -0.02em;
}
.pt-archive-card__full { font-size: 12px; color: var(--muted); }
.pt-archive-card__count {
	font-size: 11px; font-weight: 700; color: var(--ink-2);
	text-transform: uppercase; letter-spacing: .06em;
	margin-top: 6px;
}
.pt-archive-card__go {
	margin-top: 8px; font-size: 12px; font-weight: 700; color: var(--blue-600);
}

/* =============== SINGLE / MISC =============== */
.pt-back {
	display: inline-flex; align-items: center; gap: 4px;
	margin-bottom: 16px; padding: 8px 12px; border-radius: 8px;
	background: var(--surface-2); border: 1px solid var(--line);
	color: var(--ink-2); font-weight: 600; font-size: 13px;
	text-decoration: none;
}
.pt-back:hover { background: var(--blue-50); color: var(--blue-700); text-decoration: none; }

.pt-pack-content {
	margin-top: 22px; padding: 22px;
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius); line-height: 1.7;
}

.pt-page__head { margin-bottom: 16px; }
.pt-page__title {
	font-family: var(--font-display); font-weight: 800;
	font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.02em;
}
.pt-page__content { line-height: 1.7; }

.pt-post-list { display: flex; flex-direction: column; gap: 16px; }
.pt-post {
	padding: 20px; background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.pt-post__title { font-family: var(--font-display); margin: 0 0 6px; }
.pt-post__meta { font-size: 12px; color: var(--muted); margin-bottom: 10px; }

.pt-empty {
	text-align: center; padding: 56px 24px;
	background: var(--surface); border: 1px dashed var(--line);
	border-radius: 16px; color: var(--muted); font-weight: 600;
}
.pt-404 h1 {
	font-family: var(--font-display); font-size: 72px; margin: 0;
	background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}

.pt-btn {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 10px 18px; border-radius: 10px;
	background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
	color: #fff !important; font-weight: 700; font-size: 13px;
	text-decoration: none !important;
	box-shadow: 0 6px 16px -6px rgba(59,130,246,.6);
}
.pt-btn:hover { transform: translateY(-1px); }

.pt-pagination {
	display: flex; justify-content: center; margin-top: 24px;
}
.pt-pagination .nav-links {
	display: inline-flex; gap: 6px; flex-wrap: wrap;
}
.pt-pagination a,
.pt-pagination span {
	padding: 8px 12px; border-radius: 8px;
	background: var(--surface); border: 1px solid var(--line);
	font-weight: 600; color: var(--ink-2); text-decoration: none;
}
.pt-pagination .current {
	background: var(--blue-600); color: #fff; border-color: var(--blue-600);
}

/* =============== FOOTER =============== */
.pt-footer {
	border-top: 1px solid var(--line);
	background: var(--surface);
	margin-top: auto;
}
.pt-footer__inner {
	max-width: 1240px; margin: 0 auto; padding: 26px 24px;
	display: flex; flex-direction: column; align-items: center; gap: 12px;
	text-align: center;
}
.pt-footer__brand {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-display); font-weight: 800;
	color: var(--ink); font-size: 14px;
}
.pt-footer__menu {
	list-style: none; margin: 0; padding: 0;
	display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
}
.pt-footer__menu a {
	color: var(--ink-2); font-weight: 600; font-size: 13px;
	text-decoration: none;
}
.pt-footer__menu a:hover { color: var(--blue-700); }
.pt-footer__note {
	font-size: 12px; color: var(--muted); max-width: 640px; line-height: 1.5; margin: 0;
}
.pt-footer__copy { font-size: 12px; color: var(--muted); margin: 0; }

@media (max-width: 680px) {
	.pt-container { padding: 18px 16px 36px; }
	.pt-hero { padding: 40px 24px 32px; margin: 18px 16px 0; }
	.pt-pack-grid { grid-template-columns: 1fr; }
	.pt-pack-grid--featured { grid-template-columns: 1fr; }
}

/* =============== LAYOUT WITH AD SIDEBAR =============== */
.pt-layout { display: block; }
.pt-layout__main { min-width: 0; }
.pt-layout__aside { display: none; }

@media (min-width: 1100px) {
	.pt-layout {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 300px;
		gap: 28px;
		align-items: start;
	}
	.pt-layout__aside {
		display: block;
		position: sticky;
		top: 90px;
	}
}

/* =============== AD SLOTS =============== */
.pt-adslot {
	margin: 22px 0;
	padding: 12px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
}
.pt-adslot__label {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 8px;
}
.pt-adslot__body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60px;
	text-align: center;
}
.pt-adslot__body img,
.pt-adslot__body iframe,
.pt-adslot__body ins,
.pt-adslot__body > div {
	max-width: 100%;
	height: auto;
}

.pt-adslot--top    { background: linear-gradient(135deg, #eff5ff, #ffffff); }
.pt-adslot--middle { margin: 28px 0; }
.pt-adslot--bottom { margin-top: 32px; }
.pt-adslot--sidebar { margin: 0; position: sticky; top: 90px; }

/* =============== MATCH TIME STATUS =============== */
.pt-time-clock { color: var(--ink-2); font-weight: 600; font-size: 11px; }
.pt-time-done  { color: var(--muted); font-weight: 600; font-size: 11px; }
.pt-time-ended {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 2px 8px; border-radius: 6px;
	background: var(--lose-soft); color: var(--lose);
	font-weight: 700; font-size: 10px;
	text-transform: uppercase; letter-spacing: .04em;
}
.pt-time-custom {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 2px 8px; border-radius: 6px;
	background: var(--pending-soft); color: var(--pending);
	font-weight: 700; font-size: 10px;
	text-transform: uppercase; letter-spacing: .04em;
}
.pt-time-live {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 3px 10px; border-radius: 999px;
	background: #dc2626; color: #fff;
	font-weight: 800; font-size: 11px;
	letter-spacing: .06em;
	animation: ptPulse 1.8s ease-in-out infinite;
}
.pt-live-dot {
	width: 7px; height: 7px;
	background: #fff;
	border-radius: 50%;
	animation: ptBlink 1s ease-in-out infinite;
}
@keyframes ptPulse {
	0%, 100% { opacity: 1; }
	50% { opacity: .85; }
}
@keyframes ptBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: .3; }
}

/* Ensure card content stacks properly */

/* (Modal removed) */

/* =============== PREDICTIONS PAGE =============== */

@media (max-width: 680px) {
	.pt-pred-grid { grid-template-columns: 1fr; }
}

/* =============== PREDICTIONS HERO =============== */
.pt-pred-hero {
	position: relative; overflow: hidden;
	border-radius: 20px;
	padding: 48px 36px 40px;
	background: linear-gradient(135deg, #0f172a 0%, #1e40af 55%, #3b82f6 100%);
	color: #fff;
	box-shadow: var(--shadow-lg);
	margin-bottom: 28px;
}
.pt-pred-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.pt-pred-hero__inner { position: relative; z-index: 1; max-width: 680px; }
.pt-pred-hero .pt-badge-pill {
	background: rgba(251,191,36,.2); border-color: rgba(251,191,36,.4);
	color: #fde68a;
}
.pt-pred-hero__title {
	font-family: var(--font-display);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 900; line-height: 1;
	letter-spacing: -0.03em;
	margin: 16px 0 12px;
}
.pt-pred-hero__title em {
	font-style: normal;
	background: linear-gradient(180deg, #fde68a, #f59e0b);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.pt-pred-hero__sub {
	font-size: 15px; color: rgba(255,255,255,.78);
	line-height: 1.6; margin: 0 0 24px;
}
.pt-pred-stats {
	display: flex; flex-wrap: wrap; gap: 12px;
}
.pt-pstat {
	display: flex; flex-direction: column; align-items: center;
	padding: 10px 18px; border-radius: 12px;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.15);
	min-width: 72px;
}
.pt-pstat__v {
	font-family: var(--font-display); font-weight: 800;
	font-size: 22px; line-height: 1;
}
.pt-pstat__l {
	font-size: 10px; text-transform: uppercase;
	letter-spacing: .08em; margin-top: 4px;
	color: rgba(255,255,255,.65); font-weight: 700;
}
.pt-pstat.win  .pt-pstat__v { color: #86efac; }
.pt-pstat.lose .pt-pstat__v { color: #fca5a5; }
.pt-pstat.accent .pt-pstat__v { color: #fde68a; }

/* =============== PREDICTION CARDS (new) =============== */
.pt-pred-grid {
	display: grid; gap: 18px;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
.pt-pcard {
	position: relative; overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 0;
	box-shadow: var(--shadow);
	transition: transform .25s ease, box-shadow .25s ease;
	animation: ptFadeUp .4s ease backwards;
}
.pt-pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Premium gold border */
.pt-pcard--premium { border-color: #fbbf24; }
.pt-pcard--premium::before {
	content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
}
.pt-pcard__ribbon {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 4px 12px; border-radius: 0 0 10px 0;
	background: linear-gradient(135deg, #f59e0b, #fbbf24);
	color: #78350f; font-size: 9px; font-weight: 800;
	letter-spacing: .08em; text-transform: uppercase;
	position: absolute; top: 0; left: 0; z-index: 3;
}

/* Status stripes */
.pt-pcard--win  { border-left: 4px solid var(--win); }
.pt-pcard--lose { border-left: 4px solid var(--lose); }

/* Top bar */
.pt-pcard__top {
	display: flex; justify-content: space-between; align-items: center;
	padding: 14px 18px 10px;
}
.pt-pcard__league {
	font-size: 11px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .04em;
	color: var(--muted);
}

/* Match section */
.pt-pcard__match {
	display: flex; align-items: center;
	padding: 10px 18px 14px;
	gap: 12px;
}
.pt-pcard__team {
	flex: 1; text-align: center;
}
.pt-pcard__team-name {
	font-family: var(--font-display); font-weight: 800;
	font-size: 17px; color: var(--ink);
	letter-spacing: -0.01em;
}
.pt-pcard__vs {
	display: flex; flex-direction: column; align-items: center; gap: 4px;
	flex-shrink: 0;
}
.pt-pcard__time { font-size: 11px; }
.pt-pcard__vs-text {
	font-size: 10px; font-weight: 800; color: var(--muted);
	padding: 3px 8px; background: var(--surface-2);
	border: 1px solid var(--line); border-radius: 6px;
	letter-spacing: .06em;
}

/* Prediction + odds */
.pt-pcard__prediction {
	display: flex; justify-content: space-between; align-items: center;
	padding: 12px 18px;
	background: var(--surface-2);
	border-top: 1px solid var(--line-2);
	border-bottom: 1px solid var(--line-2);
}
.pt-pcard__tip, .pt-pcard__odds {
	display: flex; flex-direction: column; gap: 2px;
}
.pt-pcard__tip-label, .pt-pcard__odds-label {
	font-size: 9px; font-weight: 700; text-transform: uppercase;
	letter-spacing: .08em; color: var(--muted);
}
.pt-pcard__tip-value {
	font-weight: 800; font-size: 14px; color: var(--blue-700);
}
.pt-pcard__odds-value {
	font-family: var(--font-display); font-weight: 800;
	font-size: 16px; color: var(--ink);
	padding: 3px 10px; background: var(--blue-50);
	border: 1px solid var(--blue-100); border-radius: 8px;
	text-align: center;
}

/* Date footer */
.pt-pcard__date {
	padding: 10px 18px;
	font-size: 11px; color: var(--muted); font-weight: 600;
}

@media (max-width: 680px) {
	.pt-pred-hero { padding: 36px 20px 30px; }
	.pt-pred-grid { grid-template-columns: 1fr; }
	.pt-pcard__team-name { font-size: 14px; }
}

/* =============== PREDICTIONS STATS BAR =============== */
.pt-pred-stats {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 22px;
}
.pt-pred-stat {
	flex: 1;
	min-width: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 14px 16px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow-sm);
}
.pt-pred-stat strong {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 24px;
	color: var(--ink);
}
.pt-pred-stat span {
	font-size: 11px;
	font-weight: 700;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .06em;
}
.pt-pred-stat.win strong { color: var(--win); }
.pt-pred-stat.lose strong { color: var(--lose); }
.pt-pred-stat.accent strong { color: var(--blue-600); }

/* =============== PREDICTION CARD (rebuilt) =============== */
.pt-pred-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
.pt-pred-card {
	position: relative;
	padding: 20px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: transform .25s ease, box-shadow .25s ease;
	animation: ptFadeUp .4s ease backwards;
	overflow: hidden;
}
.pt-pred-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}
.pt-pred-card.is-premium {
	border-color: rgba(245, 158, 11, .4);
	background: linear-gradient(180deg, #fffcf0, #fff 60%);
}
.pt-pred-card.is-premium::before {
	content: "";
	position: absolute;
	top: 0; left: 20px; right: 20px;
	height: 3px;
	background: linear-gradient(90deg, #f59e0b, #fbbf24);
	border-radius: 0 0 4px 4px;
}

.pt-pred-premium {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 4px;
	padding: 4px 10px;
	border-radius: 999px;
	background: #fef3c7;
	color: #92400e;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .06em;
}

.pt-pred-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.pt-pred-card__league {
	font-size: 11px;
	font-weight: 700;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .04em;
}
.pt-pred-card__status {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .04em;
}

.pt-pred-card__teams {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.pt-pred-team {
	flex: 1;
	font-weight: 800;
	font-size: 16px;
	color: var(--ink);
}
.pt-pred-team:last-child { text-align: right; }
.pt-pred-card__mid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	flex-shrink: 0;
}
.pt-pred-card__time {
	font-size: 11px;
	color: var(--ink-2);
}
.pt-pred-vs {
	font-size: 10px;
	font-weight: 700;
	color: var(--muted);
	padding: 3px 8px;
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: 6px;
}

.pt-pred-card__tip {
	padding: 12px;
	background: var(--surface-2);
	border: 1px solid var(--line-2);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.pt-pred-card__tip-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pt-pred-card__tip-label {
	font-size: 11px;
	font-weight: 700;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .04em;
}
.pt-pred-card__tip-value {
	font-weight: 700;
	color: var(--blue-700);
	font-size: 14px;
}
.pt-pred-card__odds {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 14px;
	padding: 4px 10px;
	background: var(--blue-50);
	color: var(--blue-700);
	border: 1px solid var(--blue-100);
	border-radius: 8px;
}

.pt-pred-card__date {
	font-size: 11px;
	color: var(--muted);
	font-weight: 600;
}

@media (max-width: 680px) {
	.pt-pred-grid { grid-template-columns: 1fr; }
	.pt-pred-stats { gap: 8px; }
	.pt-pred-stat { min-width: 70px; padding: 10px; }
	.pt-pred-stat strong { font-size: 20px; }
}
