@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
	font-size: 16px;
	/* Palette UFC — noir / gris / blanc, élégant */
	--primary-color: #1a1a1a;
	--primary-dark: #000000;
	--primary-light: #2e2e2e;
	/* accent = gris ardoise lisible sur fond clair (liens, bordures) */
	--accent-color: #374151;
	--accent-hover: #111827;
	--accent-bright: #ffffff;
	/* Troisième couleur — or sobre, pour égayer le thème noir/gris/blanc */
	--gold: #c2a24a;
	--gold-dark: #a8883a;
	--gold-soft: rgba(194, 162, 74, 0.10);
	--secondary-color: #ffffff;
	--background-color: #fafafa;
	--section-background-color: #f5f5f5;
	--text-primary: #1a1a1a;
	--text-secondary: #5e5e5e;
	--border-color: #e4e4e7;
	--success-color: #00b894;
	--warning-color: #fdcb6e;
	--error-color: #ef4444;
	/* Gradients NBA-inspired */
	--gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #c0c0c0 100%);
	--gradient-burgundy: linear-gradient(135deg, #000000 0%, #2e2e2e 100%);
	--gradient-gold: linear-gradient(135deg, #c0c0c0 0%, #ffffff 100%);
	--gradient-hero: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 50%, #c0c0c0 100%);
	/* Shadows élégantes */
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
	--shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
	--shadow-gold: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* ========================================
   ANIMATIONS GLOBALES
   ======================================== */

@keyframes gradient-shift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}

@keyframes float-glow {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-10%, 5%) scale(1.1); }
}

@keyframes shine {
	0%, 100% { opacity: 0.3; }
	50% { opacity: 1; }
}

@keyframes gradient-flow {
	0%, 100% { background-position: 0% 0%; }
	50% { background-position: 100% 0%; }
}

/* ========================================
   LAYOUT GÉNÉRAL
   ======================================== */

body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background-color: var(--background-color);
	text-align: center;
	cursor: default;
	color: var(--text-primary);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

* {
	box-sizing: border-box;
}

main {
	flex-grow: 1;
	padding: 40px 20px;
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
	display: flex;
	flex-wrap: wrap;
	background: linear-gradient(135deg, #141414 0%, #0d0d0d 100%);
	backdrop-filter: blur(10px);
	padding: 0 32px;
	text-align: center;
	align-items: center;
	font-size: 30px;
	border-bottom: 2px solid var(--gold);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

#logo {
	display: flex;
	height: 64px;
	align-items: center;
}

#logo a {
	height: 100%;
	margin-right: 10px;
	font-size: 24px;
	font-weight: 700;
	color: var(--secondary-color);
	text-decoration: none;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
	letter-spacing: -0.5px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#logo a:hover {
	color: var(--accent-bright);
	transform: translateY(-2px);
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo-accent {
	color: #9ca3af;
	font-weight: 400;
}

.logo-svg {
	height: 32px;
	width: auto;
	display: block;
	filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
	transition: filter 0.3s ease;
}

#logo a:hover .logo-svg {
	filter: drop-shadow(0 4px 20px rgba(194, 162, 74, 0.35));
}

.logo-img {
	height: 40px;
	margin-right: 12px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

header nav {
	flex: 1;
}

header nav ul {
	display: flex;
	justify-content: right;
	margin: 0;
	padding: 0;
}

header nav ul li {
	list-style: none;
	margin-left: 8px;
}

header nav ul li a {
	text-decoration: none;
	color: var(--secondary-color);
	font-size: 15px;
	font-weight: 500;
	padding: 10px 18px;
	border-radius: 8px;
	transition: all 0.3s ease;
	display: inline-block;
}

header nav ul li a:hover {
	color: var(--accent-bright);
	background-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	margin-left: auto;
}

.mobile-menu-toggle span {
	width: 100%;
	height: 2px;
	background-color: var(--secondary-color);
	border-radius: 2px;
	transition: all 0.3s ease;
	transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* ========================================
   HERO SECTIONS
   ======================================== */

/* Hero standard (dashboard, pages internes) */
#hero-section {
	background: linear-gradient(180deg, #141414 0%, #1f1f1f 100%);
	padding: 50px 40px;
	border-bottom: 1px solid #2a2a2a;
	margin-bottom: 40px;
	color: white;
	position: relative;
	overflow: hidden;
}

#hero-section h1 {
	position: relative;
	z-index: 1;
	font-size: 2.5em;
	margin: 0;
	font-weight: 800;
	letter-spacing: -1px;
	color: #ffffff;
}

#hero-section p {
	position: relative;
	z-index: 1;
	font-size: 1.5em;
	margin-bottom: 40px;
	opacity: 0.95;
	font-weight: 400;
}

/* Hero landing (page d'accueil) */
.hero-landing {
	background: linear-gradient(180deg, #141414 0%, #1f1f1f 100%);
	padding: 80px 40px;
	border-bottom: 1px solid #2a2a2a;
	margin-bottom: 0;
	color: white;
	position: relative;
	overflow: hidden;
}

/* ========================================
   DEMO VIDEO SECTION
   ======================================== */

.demo-video-section {
	background: #f5f5f5;
	padding: 40px 40px 60px;
	text-align: center;
	margin-bottom: 60px;
}

.demo-video-label {
	font-size: 0.9em;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
	margin-bottom: 20px;
}

.demo-video-container {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 24px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 8px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.demo-video {
	width: 100%;
	height: auto;
	display: block;
}

.demo-video-desktop {
	display: block;
}

.demo-video-mobile {
	display: none;
}

@media (max-width: 767px) {
	.demo-video-desktop {
		display: none;
	}
	
	.demo-video-mobile {
		display: block;
	}
	
	.demo-video-section {
		padding: 40px 20px;
	}
	
	.demo-video-container {
		max-width: 100%;
		border-radius: 8px;
	}
}

.demo-video-description {
	max-width: 700px;
	margin: 0 auto;
	font-size: 1.1em;
	color: #5e5e5e;
	line-height: 1.6;
	font-weight: 400;
}

.hero-landing h1 {
	position: relative;
	z-index: 1;
	font-size: 3.5em;
	margin-bottom: 24px;
	font-weight: 800;
	letter-spacing: -1.5px;
	color: #ffffff;
}

.hero-landing p {
	position: relative;
	z-index: 1;
	font-size: 1.5em;
	margin-bottom: 40px;
	opacity: 0.92;
	font-weight: 400;
	color: #ffffff;
}

.hero-landing .cta-button { margin-top: 8px; }

/* ========================================
   BOUTONS CTA
   ======================================== */

.cta-button {
	position: relative;
	z-index: 1;
	display: inline-block;
	background: var(--gold);
	color: #1a1a1a;
	padding: 18px 48px;
	font-size: 1.2em;
	font-weight: 700;
	text-decoration: none;
	border-radius: 50px;
	transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 4px 14px rgba(194, 162, 74, 0.3);
	border: 1px solid var(--gold);
}

.cta-button:hover {
	background: var(--gold-dark);
	border-color: var(--gold-dark);
	color: #1a1a1a;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(168, 136, 58, 0.4);
}

/* Autres boutons génériques */
.btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	cursor: pointer;
	font-size: 15px;
}

.btn-primary {
	background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
	color: white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
	background: linear-gradient(135deg, #2e2e2e 0%, #1a1a1a 100%);
}

.btn-danger {
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	color: white;
	box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
	margin: auto;
}

.btn-danger:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.btn-success {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
	margin: auto;
}

.btn-success:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
	background: #64748b;
	color: white;
	box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
}

.btn-secondary:hover {
	background: #475569;
	transform: translateY(-2px);
}

.submit-btn {
	width: 100%;
	padding: 16px;
	background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
	background: linear-gradient(135deg, #2e2e2e 0%, #1a1a1a 100%);
}

.submit-btn:active {
	transform: translateY(0);
}

.subscribe-btn {
	display: inline-block;
	background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
	color: white;
	padding: 18px 56px;
	font-size: 1.2em;
	font-weight: 700;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	text-decoration: none;
	margin: 32px 0;
}

.subscribe-btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
	background: linear-gradient(135deg, #2e2e2e 0%, #1a1a1a 100%);
}


/* ========================================
   CARTES & SECTIONS
   ======================================== */

/* Stats showcase (page d'accueil) */
.stats-showcase {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 32px;
	margin: 80px auto;
	padding: 0 20px;
	max-width: 1200px;
}

.stat-card {
	background: white;
	padding: 48px 32px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid #e2e8f0;
	position: relative;
	overflow: hidden;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gold);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.stat-card:hover::before {
	transform: scaleX(1);
}

.stat-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
	border-color: #d4d4d4;
}

.stat-number {
	font-size: 4em;
	font-weight: 800;
	color: #1a1a1a;
	margin-bottom: 12px;
	line-height: 1;
}

.stat-label {
	font-size: 1em;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
}

/* ========================================
   RESPONSIVE TEAM NAMES
   ======================================== */
.team-name {
	white-space: nowrap;
}

.team-short,
.team-abbr {
	display: none;
}

.team-full {
	display: inline;
}

/* Landing Games Preview (blurred table for non-logged users) */
.landing-games-preview {
	max-width: 1100px;
	margin: 0 auto 80px;
	padding: 0 20px;
}

.landing-games-preview h2 {
	text-align: center;
	font-size: 2.4em;
	margin-bottom: 32px;
	font-weight: 800;
	color: #1a1a1a;
}

.landing-games-table-container {
	background: white;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border: 1px solid #e2e8f0;
	overflow: hidden;
	position: relative;
}

.landing-games-table {
	width: 100%;
	border-collapse: collapse;
}

.landing-games-table thead {
	background: linear-gradient(135deg, #1a1a1a, #2e2e2e);
}

.landing-games-table th {
	color: white;
	padding: 16px 12px;
	font-weight: 600;
	font-size: 0.9em;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.landing-games-table td {
	padding: 16px 12px;
	text-align: center;
	border-bottom: 1px solid #e2e8f0;
	font-size: 0.95em;
	color: #1a1a1a;
}

.landing-games-table tbody tr:last-child td {
	border-bottom: none;
}

.landing-games-table tbody tr:hover {
	background-color: #f7f7f7;
}

.landing-games-cta {
	text-align: center;
	margin-top: 32px;
}

.landing-games-cta .cta-button {
	display: inline-block;
	background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
	color: white;
	padding: 18px 48px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1em;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.landing-games-cta .cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.landing-games-note {
	text-align: center;
	color: #64748b;
	font-size: 0.95em;
	line-height: 1.6;
	margin: 24px auto 0;
	max-width: 700px;
	padding: 0 20px;
}

.landing-games-date {
	text-align: center;
	color: #64748b;
	font-size: 1em;
	font-weight: 500;
	margin: -8px 0 20px;
	letter-spacing: 0.02em;
}

.landing-games-table .pick-cell {
	white-space: nowrap;
	font-weight: 600;
}

.landing-games-table .pick-mark {
	margin-left: 4px;
	font-weight: 700;
}

.landing-games-table .pick-cell.pick-win .pick-mark {
	color: #16a34a;
}

.landing-games-table .pick-cell.pick-lose .pick-mark {
	color: #dc2626;
}

.pick-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	font-size: 0.85em;
	font-weight: 700;
	line-height: 1;
	margin-left: 6px;
	vertical-align: middle;
	color: #fff;
}

.pick-badge-win {
	background-color: #16a34a;
}

.pick-badge-loss {
	background-color: #dc2626;
}

@media (max-width: 768px) {
	.landing-games-preview h2 {
		font-size: 1.8em;
	}
	
	.landing-games-table-container {
		overflow-x: visible;
	}
	
	.landing-games-table {
		width: 100%;
	}
	
	.landing-games-table th,
	.landing-games-table td {
		padding: 12px 8px;
		font-size: 0.85em;
	}
	
	/* Switch to short team names */
	.landing-games-table .team-full {
		display: none;
	}
	
	.landing-games-table .team-short {
		display: inline;
	}
	
	.landing-games-cta .cta-button {
		padding: 14px 32px;
		font-size: 1em;
	}
}

/* Landing games table - hide odds columns under 640px */
@media (max-width: 640px) {
	.landing-games-table th:nth-child(3),
	.landing-games-table td:nth-child(3),
	.landing-games-table th:nth-child(4),
	.landing-games-table td:nth-child(4) {
		display: none;
	}
	
	.landing-games-table th,
	.landing-games-table td {
		padding: 10px 6px;
		font-size: 0.8em;
	}
}

/* Landing games table - switch to abbreviations under 520px */
@media (max-width: 520px) {
	.landing-games-table .team-short {
		display: none;
	}
	
	.landing-games-table .team-abbr {
		display: inline;
	}
	
	.landing-games-table th,
	.landing-games-table td {
		padding: 10px 5px;
		font-size: 0.75em;
	}
	
	/* Shorten header labels */
	.landing-games-table th:nth-child(2),
	.landing-games-table th:nth-child(5) {
		font-size: 0;
	}
	
	.landing-games-table th:nth-child(2)::after {
		content: '%';
		font-size: 11px;
	}
	
	.landing-games-table th:nth-child(5)::after {
		content: '%';
		font-size: 11px;
	}
}

/* Features section */
.features-section {
	padding: 80px 20px;
	background: white;
	border-radius: 24px;
	margin: 60px 0;
	border: 1px solid var(--border-color);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.features-section h2 {
	text-align: center;
	font-size: 3em;
	margin-bottom: 60px;
	font-weight: 800;
	background: linear-gradient(135deg, #1a1a1a 0%, #c0c0c0 50%, #ffffff 100%);
	background-size: 200% 200%;
	animation: none;
	-webkit-background-clip: text;
	-webkit-text-fill-color: #1a1a1a;
	background-clip: text;
	letter-spacing: -1px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	max-width: 1200px;
	margin: 0 auto;
}

.feature-item {
	text-align: center;
	background: white;
	padding: 40px 32px;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid #e2e8f0;
}

/* Chart section */
.chart-section {
	padding: 80px 20px;
	background: linear-gradient(180deg, #f5f5f5 0%, #fafafa 100%);
	margin: 60px 0;
	border: 1px solid var(--border-color);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.chart-section h2 {
	text-align: center;
	font-size: 3em;
	margin-bottom: 20px;
	font-weight: 800;
	background: linear-gradient(135deg, #1a1a1a 0%, #c0c0c0 50%, #ffffff 100%);
	background-size: 200% 200%;
	animation: none;
	-webkit-background-clip: text;
	-webkit-text-fill-color: #1a1a1a;
	background-clip: text;
	letter-spacing: -1px;
}

.chart-description {
	text-align: center;
	color: var(--text-secondary);
	font-size: 1.1em;
	margin-bottom: 40px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.chart-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px;
	background: white;
	border: 1px solid var(--border-color);
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	position: relative;
}

.chart-container canvas {
	max-height: 500px;
}

.chart-footnote {
	text-align: center;
	color: var(--text-secondary);
	font-size: 0.9em;
	margin-top: 20px;
	font-style: italic;
	opacity: 0.8;
}

.final-profit-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #1a1a1a;
	color: var(--gold);
	padding: 16px 24px;
	border-radius: 10px;
	border: 1px solid var(--gold);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	z-index: 10;
}

.final-profit-badge .label {
	font-size: 0.8em;
	opacity: 0.9;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.final-profit-badge .value {
	font-size: 2em;
	font-weight: 800;
	line-height: 1;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-glow {
	0%, 100% {
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 15px rgba(0, 0, 0, 0.3);
		transform: scale(1);
	}
	50% {
		box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 25px rgba(0, 0, 0, 0.4);
		transform: scale(1.03);
	}
}

@media (max-width: 1200px) {
	header {
		padding: 0 20px;
		position: relative;
	}
	
	#logo a {
		font-size: 22px;
	}
	
	/* Show mobile menu toggle */
	.mobile-menu-toggle {
		display: flex;
	}
	
	/* Hide navigation by default on mobile */
	header nav {
		position: fixed;
		top: 64px;
		right: -100%;
		width: 200px;
		height: auto;
		max-height: calc(100vh - 64px);
		background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.99) 100%);
		backdrop-filter: blur(10px);
		transition: right 0.3s ease;
		box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
		z-index: 999;
		border-bottom-left-radius: 12px;
	}
	
	header nav.active {
		right: 0;
	}
	
	header nav ul {
		flex-direction: column;
		padding: 12px;
		justify-content: flex-start;
		align-items: stretch;
	}
	
	header nav ul li {
		margin-left: 0;
		margin-bottom: 4px;
	}
	
	header nav ul li a {
		padding: 12px 16px;
		font-size: 15px;
		display: block;
		width: 100%;
		text-align: left;
		border-radius: 8px;
	}
	
	.chart-section {
		padding: 40px 15px;
	}
	
	.chart-section h2 {
		font-size: 2em;
	}
	
	.chart-container {
		padding: 20px;
		padding-top: 80px;
	}
	
	.chart-container canvas {
		max-height: 300px;
	}
	
	.final-profit-badge {
		position: static;
		margin: 0 auto 20px;
		width: fit-content;
		display: block;
	}
	
	.final-profit-badge .value {
		font-size: 2em;
	}
	
	/* Daily Features Section Responsive */
	.daily-features-section {
		padding: 50px 20px;
	}
	
	.daily-features-section h2 {
		font-size: 2em;
		margin-bottom: 40px;
	}
	
	.daily-features-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.daily-feature-card {
		padding: 32px 24px;
	}
	
	.daily-feature-icon {
		font-size: 3em;
	}
	
	.daily-feature-card h3 {
		font-size: 1.3em;
	}
	
	.daily-feature-card p {
		font-size: 1em;
	}
}

.feature-item:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(0, 0, 0, 0.2);
	border-color: #c0c0c0;
	background: linear-gradient(135deg, #fff 0%, #ffffff 100%);
}

.feature-item h3 {
	font-size: 1.6em;
	margin-bottom: 16px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: -0.5px;
}

.feature-icon {
	font-size: 3.5em;
	margin-bottom: 24px;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.feature-item p {
	color: #64748b;
	line-height: 1.8;
	font-size: 1.05em;
}

/* Pricing section */
.pricing-section {
	background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 50%, #c0c0c0 100%);
	background-size: 200% 200%;
	color: white;
	padding: 80px 40px;
	text-align: center;
	margin: 0;
	box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15), 0 25px 70px rgba(0, 0, 0, 0.4);
	position: relative;
	overflow: hidden;
}

.pricing-section > * {
	position: relative;
	z-index: 1;
}

.pricing-section h2 {
	font-size: 3em;
	margin-bottom: 24px;
	margin-top: 0;
	font-weight: 800;
	letter-spacing: -1px;
	text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.price {
	font-size: 4.5em;
	font-weight: 800;
	margin: 20px 0;
	line-height: 1;
}

.price-details {
	font-size: 1.3em;
	margin-bottom: 32px;
	opacity: 0.95;
	font-weight: 400;
}

.season-note {
	background: rgba(255, 255, 255, 0.15);
	padding: 24px 32px;
	border-radius: 16px;
	margin: 32px auto 40px auto;
	max-width: 650px;
	font-size: 1.1em;
	border: 2px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	line-height: 1.8;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
	padding: 80px 40px;
	background: linear-gradient(180deg, #f5f5f5 0%, #fafafa 100%);
	text-align: center;
}

.faq-section h2 {
	font-size: 2.8em;
	margin-bottom: 50px;
	color: var(--text-primary);
	font-weight: 800;
	letter-spacing: -1px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: #1a1a1a;
	background-clip: text;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
}

.faq-item {
	margin-bottom: 16px;
	border-radius: 12px;
	overflow: hidden;
	background: white;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	border-color: rgba(0, 0, 0, 0.12);
}

.faq-item.active {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
	border-color: var(--primary-color);
}

.faq-question {
	width: 100%;
	padding: 20px 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.1em;
	font-weight: 600;
	color: var(--text-primary);
	transition: all 0.3s ease;
	text-align: left;
}

.faq-question:hover {
	background: rgba(0, 0, 0, 0.03);
}

.faq-item.active .faq-question {
	background: rgba(0, 0, 0, 0.05);
	color: var(--primary-color);
}

.faq-icon {
	font-size: 1.5em;
	font-weight: 300;
	color: var(--primary-color);
	transition: transform 0.3s ease;
	min-width: 30px;
	text-align: center;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	background: rgba(0, 0, 0, 0.02);
}

.faq-answer p {
	padding: 0 24px;
	margin: 0 0 16px 0;
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 1em;
}

.faq-answer p:first-child {
	padding-top: 16px;
}

.faq-answer p:last-child {
	padding-bottom: 20px;
	margin-bottom: 0;
}

.faq-answer a {
	color: var(--primary-color);
	text-decoration: underline;
	font-weight: 500;
}

.faq-answer a:hover {
	color: var(--accent-color);
}

/* FAQ Mobile Responsive */
@media (max-width: 768px) {
	.faq-section {
		padding: 60px 20px;
	}

	.faq-section h2 {
		font-size: 2em;
		margin-bottom: 32px;
	}

	.faq-question {
		padding: 16px 20px;
		font-size: 1em;
	}

	.faq-answer p {
		padding: 0 20px;
		font-size: 0.95em;
	}

	.faq-icon {
		font-size: 1.3em;
	}
}

/* ========================================
   DAILY FEATURES SECTION
   ======================================== */

.daily-features-section {
	padding: 80px 40px;
	background: linear-gradient(180deg, #f5f5f5 0%, #fafafa 100%);
	margin: 0;
	position: relative;
	overflow: hidden;
}

.daily-features-section h2 {
	font-size: 2.8em;
	margin-bottom: 60px;
	color: var(--text-primary);
	font-weight: 800;
	letter-spacing: -1px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: #1a1a1a;
	background-clip: text;
}

.daily-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
	max-width: 1200px;
	margin: 0 auto;
}

.daily-feature-card {
	background: white;
	border-radius: 20px;
	padding: 40px 32px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.06);
	position: relative;
}

.daily-feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	border-color: var(--accent-color);
}

.daily-feature-icon {
	font-size: 3.5em;
	margin-bottom: 24px;
	display: inline-block;
	transition: transform 0.4s ease;
}

.daily-feature-card:hover .daily-feature-icon {
	transform: scale(1.15) rotate(5deg);
}

.daily-feature-card h3 {
	font-size: 1.5em;
	margin: 0 0 16px 0;
	color: var(--primary-color);
	font-weight: 700;
}

.daily-feature-card p {
	color: var(--text-secondary);
	line-height: 1.8;
	font-size: 1.05em;
	margin: 0;
}

/* ========================================
   NOTES & ALERTS
   ======================================== */

.accuracy-note {
	font-style: normal;
	font-size: 18px;
	font-weight: 600;
	padding: 20px 32px;
	background: linear-gradient(135deg, #fff 0%, var(--secondary-color) 100%);
	border: 2px solid var(--accent-color);
	border-radius: 16px;
	width: fit-content;
	max-width: 350px;
	box-shadow: var(--shadow-gold);
	margin: 32px auto;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.accuracy-note::before {
	content: '🏀';
	font-size: 24px;
	animation: bounce 2s ease-in-out infinite;
}

.alert-underperformance {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	color: #92400e;
	padding: 16px 24px;
	margin: 24px;
	font-weight: 600;
	border-radius: 12px;
	box-shadow: var(--shadow-md);
	border-left: 4px solid var(--warning-color);
}

.alert {
	padding: 18px 24px;
	border-radius: 12px;
	margin-bottom: 24px;
	font-size: 14px;
	font-weight: 500;
}

.alert-error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

.alert-success {
	background: #dcfce7;
	color: #166534;
	border: 1px solid #bbf7d0;
}

.alert-info {
	background: #dbeafe;
	color: #1e40af;
	border: 1px solid #bfdbfe;
}

.alert-warning {
	background: #fef3c7;
	color: #92400e;
	border: 1px solid #fde68a;
}

.notice-alert {
	display: flex;
	justify-content: left;
	align-items: center;
	padding: 12px;
	background: #f0fdf4;
	border-radius: 8px;
	margin: 16px 0;
}

.green-rectangle {
	background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
	border: 2px solid var(--success-color);
	width: 28px;
	height: 18px;
	margin-right: 8px;
	margin-left: 24px;
	border-radius: 4px;
	box-shadow: var(--shadow-sm);
}

.orange-rectangle {
	background: linear-gradient(135deg, #ffcccc 0%, #ff9999 100%);
	border: 2px solid rgb(253, 110, 110);
	width: 28px;
	height: 18px;
	margin-right: 8px;
	margin-left: 24px;
	border-radius: 4px;
	box-shadow: var(--shadow-sm);
}

/* ========================================
   TABLEAUX
   ======================================== */

#first-line-container {
	display: flex;
	justify-content: center;
	align-items: baseline;
	margin: 40px 0;
	flex-wrap: wrap;
	gap: 24px;
}

#todays-game-table-container, #benchmark {
	margin: 32px 0;
}

/* Media query pour les stats cards entre 1200px et 650px */
@media (max-width: 1200px) and (min-width: 651px) {
	.stats-showcase {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
		margin: 60px auto;
		padding: 0 24px;
		max-width: 800px;
	}
	
	.stat-card {
		padding: 36px 24px;
	}
	
	.stat-number {
		font-size: 3.2em;
	}
	
	.stat-label {
		font-size: 0.9em;
	}
}

/*créé un media query sous 650 px de largeur*/
@media (max-width: 650px) {
	/* La colonne Pick (7e) porte le bouton .unfold-btn : on la garde visible.
	   Le conteneur a overflow-x:auto et les colonnes de cotes sont masquées sous 520px. */

	/* Ensure short names are used at this breakpoint too */
	#todays-game-table-container .team-full {
		display: none;
	}
	
	#todays-game-table-container .team-short {
		display: inline;
	}
	
	#todays-game-table-container table th,
	#todays-game-table-container table td {
		padding: 12px 8px;
		font-size: 13px;
	}
	
	.stats-showcase {
		grid-template-columns: 1fr;
		gap: 16px;
		margin: 40px auto;
		padding: 0 20px;
	}
	
	.stat-card {
		padding: 32px 20px;
	}
	
	.stat-number {
		font-size: 3em;
	}
	
	.stat-label {
		font-size: 0.85em;
		letter-spacing: 1px;
	}
	
	/* Benchmark table responsive */
	.benchmark-section {
		padding: 40px 10px;
	}
	
	.benchmark-container {
		padding: 0 10px;
	}
	
	.benchmark-table th:nth-child(3),
	.benchmark-table td:nth-child(3) {
		display: none;
	}
	
	.benchmark-table th,
	.benchmark-table td {
		padding: 12px 10px;
		font-size: 13px;
	}
	
	.benchmark-table h3 {
		font-size: 1.1em;
		padding: 15px !important;
	}
}

/* Le tableau Today's Games déborde entre ~524 et 568px : on applique dès 580px
   la réduction (masquage des cotes, abréviations, padding réduit). */
@media (max-width: 580px) {
	#todays-game-table-container table th:nth-child(2), #todays-game-table-container table td:nth-child(2), #todays-game-table-container table th:nth-child(5), #todays-game-table-container table td:nth-child(5) {
		display: none;
	}

	/* Switch to abbreviations */
	#todays-game-table-container .team-short {
		display: none;
	}

	#todays-game-table-container .team-abbr {
		display: inline;
	}

	#todays-game-table-container table th,
	#todays-game-table-container table td {
		padding: 10px 6px;
		font-size: 12px;
	}
}

/*refais l'opération sous 520 px*/
@media (max-width: 520px) {
	header {
		padding: 0 12px;
	}
	
	#logo a {
		font-size: 18px;
	}

	.logo-svg {
		height: 28px;
	}

	.mobile-menu-toggle {
		width: 22px;
		height: 18px;
	}
	
	nav {
		width: 180px;
	}
	
	nav ul li a {
		font-size: 14px;
		padding: 10px 14px;
	}
	
	.stats-showcase {
		grid-template-columns: 1fr;
		gap: 16px;
		margin: 30px auto;
		padding: 0 15px;
	}
	
	.stat-card {
		padding: 28px 16px;
	}
	
	.stat-number {
		font-size: 2.5em;
	}
	
	.stat-label {
		font-size: 0.8em;
	}
	
	/* Benchmark table mobile */
	.benchmark-section {
		padding: 30px 5px;
	}
	
	.benchmark-container {
		padding: 0 5px;
	}
	
	.benchmark-table {
		border-radius: 8px;
	}
	
	.benchmark-table th,
	.benchmark-table td {
		padding: 10px 8px;
		font-size: 12px;
	}
	
	.benchmark-table h3 {
		font-size: 1em;
		padding: 12px !important;
	}
}

@media (max-width: 420px) {
	.features-section h2 {
		font-size: 2em;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}
	
	.hero-landing h1 {
		font-size: 2.2em;
	}
}



#trophies-tables-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	grid-gap: 32px;
	margin: 40px 0;
}

.green-rectangle {
	background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
	border: 2px solid var(--success-color);
	width: 28px;
	height: 18px;
	margin-right: 8px;
	margin-left: 24px;
	border-radius: 4px;
	box-shadow: var(--shadow-sm);
}

.orange-rectangle {
	background: linear-gradient(135deg, #ffcccc 0%, #ff9999 100%);
	border: 2px solid rgb(253, 110, 110);
	width: 28px;
	height: 18px;
	margin-right: 8px;
	margin-left: 24px;
	border-radius: 4px;
	box-shadow: var(--shadow-sm);
}

.notice-alert {
	display: flex;
	justify-content: left;
	align-items: center;
	padding: 12px;
	background: #f0fdf4;
	border-radius: 8px;
	margin: 16px 0;
}

table {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	background: white;
	border: 1px solid var(--border-color);
}

table th {
	background: var(--primary-color);
	color: var(--secondary-color);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.5px;
	position: relative;
	overflow: hidden;
}

table th::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent-bright);
	opacity: 0.7;
}

table th, table td {
	border: none;
	border-bottom: 1px solid var(--border-color);
	text-align: center;
	padding: 14px 14px;
	font-size: 15px;
}

table tr:last-child td {
	border-bottom: none;
}

table tr:first-child th:first-child {
	border-top-left-radius: 12px;
}

table tr:first-child th:last-child {
	border-top-right-radius: 12px;
}

table:not(:has(tfoot)) tr:last-child td:first-child {
	border-bottom-left-radius: 12px;
}

table:not(:has(tfoot)) tr:last-child td:last-child {
	border-bottom-right-radius: 12px;
}

table tfoot tr:last-child td:first-child {
	border-bottom-left-radius: 12px;
}

table tfoot tr:last-child td:last-child {
	border-bottom-right-radius: 12px;
}

table tr:nth-child(even) {
	background-color: #f8fafc;
}

table tbody tr:hover {
	background-color: #f1f5f9;
	transition: background-color 0.2s ease;
	cursor: pointer;
}

table tfoot td {
	font-style: italic;
	background-color: #f8fafc;
	font-size: 13px;
	color: var(--text-secondary);
	padding: 12px;
}

/* Bouton "unfold" du pick + ligne dépliable du finish */
#game-prediction .unfold-btn {
	display: flex;
	width: 100%;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 6px 12px;
	background: transparent;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	font: inherit;
	font-size: 14px;
	color: var(--text-primary);
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

#game-prediction .unfold-btn:hover {
	border-color: var(--accent-bright);
}

#game-prediction .unfold-caret {
	font-size: 11px;
	color: var(--text-secondary);
}

#game-prediction .unfold-btn[aria-expanded="true"] .unfold-caret {
	transform: rotate(180deg);
}

#game-prediction .finish-row td {
	background: #f8fafc;
	padding: 12px 14px;
}

#game-prediction .finish-detail {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 14px;
}

#game-prediction .finish-label {
	font-weight: 600;
	color: var(--text-primary);
}

#game-prediction .finish-prob,
#game-prediction .finish-odd {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 6px;
}


#partner-logo-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 40px 0;
	gap: 32px;
}

.about-wrapper {
  max-width: 1100px;
  margin: 0 auto 48px;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.04) 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  width: 100%;
}

/* Boutons CTA spécifiques pour about.php */
.about-wrapper .cta-button {
  background: linear-gradient(135deg, #f2d0be 0%, #d4a574 100%);
  color: #1a1a1a;
  padding: 18px 48px;
  font-size: 1.2em;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid #d4a574;
  box-shadow: 0 10px 40px rgba(180, 133, 106, 0.3);
  transition: all .8s;
}

.about-wrapper .cta-button:hover {
  background: linear-gradient(135deg, #f2d0be 0%, #e1b88c 100%);
  color: #000000;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 15px rgba(180, 133, 106, 0.5);
}

.about-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px 36px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.about-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.about-card h3 {
  margin-top: 22px;
  margin-bottom: 8px;
}

.about-card ul,
.about-card .about-ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.about-card ul li,
.about-card .about-ul li {
  position: relative;
  padding: 12px 16px 12px 48px;
  margin-bottom: 12px;
  background: linear-gradient(120deg, #f9f7f2 0%, #fdf6e3 100%);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.about-card ul li:hover,
.about-card .about-ul li:hover {
  transform: translateX(4px);
  border-left-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Wrapper pour les stats dans Championship contenders */
.about-stats-wrapper {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px auto 28px auto;
  max-width: 90%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

/* Style sobre pour le ul dans Championship contenders */
.about-card .about-ul-simple {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
}

.about-card .about-ul-simple li {
  position: relative;
  padding: 8px 0 8px 28px;
  margin-bottom: 8px;
  background: none;
  border: none;
  box-shadow: none;
  line-height: 1.6;
  text-align: left;
}

.about-card .about-ul-simple li:last-child {
  margin-bottom: 0;
}

.about-card .about-ul-simple li:hover {
  transform: none;
  box-shadow: none;
}

.about-card .about-ul-simple li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 9px;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 15px;
}

/* Style traditionnel pour les pages légales */
.legal-content ul {
  list-style: disc;
  padding-left: 30px;
  margin: 16px 0;
}

.legal-content ul li {
  padding: 4px 0;
  margin-bottom: 8px;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  transform: none !important;
  transition: none;
}

.legal-content ul li:hover {
  transform: none;
  box-shadow: none;
  border-left-color: transparent;
}

.about-card table {
  width: 100%;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 20px;
  margin-bottom: 28px;
  font-size: 0.95rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: white;
  border: 1px solid var(--border-color);
}

.about-card table th,
.about-card table td {
  border: none;
  border-bottom: 1px solid var(--border-color);
  padding: 14px 12px;
  text-align: center;
}

.about-card table th {
  background: var(--gradient-burgundy);
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  position: relative;
}

.about-card table th::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-bright);
  opacity: 0.7;
}

.about-card table tr:last-child td {
  border-bottom: none;
}

.about-card table tr:nth-child(even) {
  background-color: #f8fafc;
}

.about-card table tbody tr:hover {
  background-color: #f1f5f9;
  transition: background-color 0.2s ease;
}

/* ========================================
   TEST PAGE (dev only)
   ======================================== */

.test-container {
	max-width: 600px;
	margin: 100px auto;
	padding: 40px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	text-align: center;
}

.warning-badge {
	background: #fff3cd;
	color: #856404;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 30px;
	border: 2px solid #ffc107;
}

.test-btn {
	background: #28a745;
	color: white;
	padding: 15px 40px;
	border: none;
	border-radius: 8px;
	font-size: 1.1em;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
}

.test-btn:hover {
	background: #218838;
}

/* ========================================
   AUTH PAGES (login, register)
   ======================================== */

.auth-container {
	max-width: 480px;
	margin: 80px auto;
	padding: 48px;
	background: white;
	border-radius: 24px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	border: 2px solid var(--accent-color);
}

.auth-tabs {
	display: flex;
	margin-bottom: 40px;
	border-bottom: 2px solid #f1f5f9;
	gap: 8px;
}

.auth-tab {
	flex: 1;
	padding: 16px;
	text-align: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
	color: #64748b;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 8px 8px 0 0;
}

.auth-tab:hover {
	background: rgba(0, 0, 0, 0.1);
	color: #1a1a1a;
}

.auth-tab.active {
	color: #1a1a1a;
	border-bottom-color: #c0c0c0;
	background: rgba(0, 0, 0, 0.1);
}

.auth-form {
	display: none;
}

.auth-form.active {
	display: block;
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	display: block;
	margin-bottom: 10px;
	font-weight: 600;
	color: #1e293b;
	font-size: 14px;
}

.form-group input {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	font-size: 15px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

.form-group input:focus {
	outline: none;
	border-color: #c0c0c0;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

.remember-me-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500 !important;
	color: #64748b !important;
	font-size: 14px !important;
	cursor: pointer;
	user-select: none;
}

.remember-me-label input[type="checkbox"] {
	width: auto !important;
	margin: 0 !important;
	cursor: pointer;
	accent-color: #c0c0c0;
}

.remember-me-label:hover {
	color: #1e293b !important;
}

.auth-footer {
	margin-top: 24px;
	text-align: center;
	color: #64748b;
	font-size: 14px;
}

.auth-footer a {
	color: #1a1a1a;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s;
}

.auth-footer a:hover {
	color: #c0c0c0;
	text-decoration: underline;
}

.forgot-password-link {
	display: block;
	font-size: 13px;
}

/* ========================================
   SUBSCRIBE PAGE
   ======================================== */

.subscribe-container {
	max-width: 960px;
	margin: 60px auto;
	padding: 20px;
	box-sizing: border-box;
	width: 100%;
}

.temp-notice {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	border: 2px solid #f59e0b;
	border-radius: 16px;
	padding: 24px 32px;
	margin-bottom: 32px;
	color: #92400e;
	text-align: center;
	font-size: 15px;
	line-height: 1.6;
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.temp-notice strong {
	display: block;
	margin-bottom: 8px;
	font-size: 16px;
	color: #78350f;
}

.pricing-card {
	background: white;
	border-radius: 24px;
	padding: 56px 48px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
	text-align: center;
	border: 1px solid #e2e8f0;
	box-sizing: border-box;
	max-width: 100%;
}

.plan-badge {
	display: inline-block;
	background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
	color: white;
	padding: 10px 24px;
	border-radius: 24px;
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.plan-price {
	font-size: 3.5em;
	font-weight: 800;
	background: linear-gradient(135deg, #1a1a1a 0%, #c0c0c0 50%, #ffffff 100%);
	background-size: 200% 200%;
	/* animation: none; */
	-webkit-background-clip: text;
	-webkit-text-fill-color: #1a1a1a;
	background-clip: text;
	margin: 0 0 32px 0;
	line-height: 1;
}

.plan-price .currency {
	font-size: 0.5em;
	vertical-align: super;
}

.plan-period {
	color: #64748b;
	font-size: 1.3em;
	margin-bottom: 36px;
	font-weight: 500;
}

.features-list {
	text-align: left;
	margin: 0 0 36px 0;
	padding: 0 20px;
}

.features-list .feature-item {
	padding: 18px 0;
	border-bottom: 1px solid #f1f5f9;
	display: flex;
	align-items: center;
	font-size: 15px;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
	border-left: none;
	border-right: none;
	border-top: none;
	transform: none;
}

.features-list .feature-item:hover {
	transform: none;
	box-shadow: none;
	border-color: #f1f5f9;
	background: transparent;
}

.features-list .feature-item:last-child {
	border-bottom: none;
}

.features-list .feature-icon {
	color: #10b981;
	font-size: 1.8em;
	margin-right: 16px;
	margin-bottom: 0;
	min-width: 35px;
	filter: none;
}

.season-info {
	background: #f8fafc;
	padding: 28px;
	border-radius: 16px;
	margin: 0 0 32px 0;
	text-align: left;
	border: 1px solid #e2e8f0;
}

.season-info h3 {
	color: #1e293b;
	margin: 0 0 16px 0;
	font-size: 1.3em;
	font-weight: 700;
}

.season-info ul {
	list-style: none;
	padding: 0;
}

.season-info li {
	padding: 10px 0;
	padding-left: 32px;
	position: relative;
	color: #475569;
	line-height: 1.6;
}

.season-info li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #10b981;
	font-weight: 700;
	font-size: 1.2em;
}

.guarantee-box {
	background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
	color: white;
	padding: 32px;
	border-radius: 16px;
	margin: 0;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
	border: 2px solid rgba(0, 0, 0, 0.3);
}

.guarantee-box h3 {
	margin: 0 0 12px 0;
	font-size: 1.4em;
	font-weight: 700;
}

.guarantee-box p {
	margin: 0;
	line-height: 1.6;
}

/* Historical Performance Section */
.historical-performance {
	background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 32px 28px;
	margin: 12px 0 18px 0;
}

.historical-performance h3 {
	color: #1e293b;
	margin: 0 0 20px 0;
	font-size: 1.2em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.performance-stats {
	display: flex;
	justify-content: space-around;
	gap: 16px;
	flex-wrap: wrap;
}

.performance-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
	min-width: 120px;
}

.performance-stat .stat-value {
	font-size: 2em;
	font-weight: 800;
	color: #1e293b;
	line-height: 1.2;
}

.performance-stat .stat-value.positive {
	color: #059669;
}

.performance-stat .stat-value.negative {
	color: #ef4444;
}

.performance-stat .stat-label {
	font-size: 0.85em;
	color: #64748b;
	margin-top: 10px;
	line-height: 1.3;
}

.performance-stat .stat-sublabel {
	display: block;
	font-size: 0.75em;
	color: #94a3b8;
	margin-top: 4px;
	font-style: italic;
}

.profitability-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0 0 28px 0;
	font-size: 0.82rem;
	line-height: 1.4;
	color: #6f7f76;
	text-align: center;
}

.profitability-tooltip {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.profitability-tooltip__trigger {
	border: none;
	padding: 0;
	background: transparent;
	color: #7a857f;
	font: inherit;
	line-height: 1;
	cursor: help;
}

.profitability-tooltip__trigger:focus-visible {
	outline: 2px solid rgba(122, 133, 127, 0.35);
	outline-offset: 3px;
	border-radius: 999px;
}

.profitability-tooltip__content {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 10px);
	transform: translateX(-50%) translateY(6px);
	width: max-content;
	max-width: 220px;
	padding: 8px 10px;
	border-radius: 8px;
	background: rgba(30, 41, 59, 0.94);
	color: #f8fafc;
	font-size: 0.75rem;
	line-height: 1.4;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	z-index: 10;
}

.profitability-tooltip__content::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	border-width: 6px 5px 0 5px;
	border-style: solid;
	border-color: rgba(30, 41, 59, 0.94) transparent transparent transparent;
}

.profitability-tooltip:hover .profitability-tooltip__content,
.profitability-tooltip:focus-within .profitability-tooltip__content {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

/* Value Proposition Section */
.value-proposition {
	padding: 20px 24px;
	margin: 0 0 24px 0;
	text-align: center;
}

.value-proposition .proposition-tagline {
	font-size: 1.15em;
	color: #475569;
	font-style: italic;
	margin: 0 0 12px 0;
	line-height: 1.5;
}

.value-proposition .proposition-tagline .mobile-only {
	display: none;
}

.value-proposition .proposition-tagline .desktop-only {
	display: inline;
}

.value-proposition .proposition-product {
	font-size: 1.1em;
	color: #1e293b;
	font-weight: 600;
	margin: 0;
}

/* Billing Info Section */
.billing-info {
	background: #f8fafc;
	border-radius: 12px;
	padding: 20px 28px;
	margin: 0 0 28px 0;
	text-align: left;
}

.billing-item {
	display: flex;
	align-items: center;
	padding: 6px 0;
	font-size: 0.95em;
	color: #475569;
}

.billing-item .billing-icon {
	color: #10b981;
	font-weight: 700;
	margin-right: 12px;
	font-size: 1.1em;
}

/* Checkout Microcopy */
.checkout-microcopy {
	font-size: 0.85em;
	color: #94a3b8;
	margin: 12px 0 0 0;
	text-align: center;
}

/* ========================================
   ACCOUNT PAGE
   ======================================== */

.account-container {
	max-width: 1100px;
	min-width: min(100%, 700px);
	margin: 60px auto;
	padding: 20px;
}

.account-header {
	background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
	color: white;
	padding: 48px 40px;
	border-radius: 24px;
	margin-bottom: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	border: 2px solid rgba(0, 0, 0, 0.3);
}

.account-header h1 {
	margin: 0 0 12px 0;
	font-size: 2.5em;
	font-weight: 800;
	letter-spacing: -1px;
}

.account-header p {
	margin: 0;
	font-size: 1.2em;
	opacity: 0.95;
}

.account-section {
	background: white;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	margin-bottom: 32px;
	border: 1px solid #e2e8f0;
}

.account-section h2 {
	color: #1a1a1a;
	margin-top: 0;
	padding-bottom: 20px;
	border-bottom: 2px solid #f1f5f9;
	font-size: 1.6em;
	font-weight: 700;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	margin-top: 24px;
}

.info-item {
	padding: 20px;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	transition: all 0.3s;
}

.info-item:hover {
	border-color: #cbd5e1;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-label {
	font-weight: 600;
	color: #64748b;
	font-size: 13px;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.info-value {
	font-size: 1.15em;
	color: #1e293b;
	font-weight: 600;
}

.status-badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 0.9em;
	font-weight: 700;
	letter-spacing: 0.3px;
}

.status-active {
	background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
	color: #065f46;
}

.status-trialing {
	background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
	color: #1e40af;
}

.status-warning {
	background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
	color: #9a3412;
}

.status-canceled {
	background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
	color: #991b1b;
}

.status-expired {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	color: #92400e;
}

.payment-table {
	width: 100%;
	margin-top: 24px;
}

.payment-table th {
	background: #f8fafc;
	color: #475569;
	padding: 16px;
	text-align: left;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-bottom: 2px solid #e2e8f0;
}

.payment-table td {
	padding: 16px;
	border-bottom: 1px solid #f1f5f9;
	color: #475569;
	font-size: 14px;
	text-align: left;
}

.payment-table tbody tr:last-child td {
	border-bottom: none;
}

.payment-table tbody tr:hover {
	background: #f8fafc;
}

/* ========================================
   BENCHMARK SECTION
   ======================================== */

.benchmark-section {
	padding: 60px 20px;
	background: white;
}

.benchmark-section h2 {
	margin-bottom: 40px;
	color: var(--text-primary);
}

.benchmark-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.benchmark-table {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	margin: 0 auto;
	border: 1px solid var(--border-color);
}

.benchmark-table table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
}

.benchmark-table th {
	background: var(--primary-color);
	color: var(--secondary-color);
	padding: 16px 12px;
	text-align: center;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
}

.benchmark-table th::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent-bright);
	opacity: 0.7;
}

.benchmark-table td {
	padding: 16px 12px;
	border-bottom: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 14px;
	text-align: center;
}

.benchmark-table tbody tr:last-child td {
	border-bottom: none;
}

.benchmark-table tbody tr:nth-child(even) {
	background-color: #f8fafc;
}

.benchmark-table tbody tr:hover {
	background-color: #f1f5f9;
	transition: background-color 0.2s ease;
	cursor: pointer;
}

.benchmark-table .success {
	color: var(--success-color);
	font-weight: 600;
}

.benchmark-table .failure {
	color: var(--error-color);
	font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
	text-align: center;
	padding: 32px 20px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: auto;
}

footer p {
	margin: 0;
	font-weight: 400;
	letter-spacing: 0.3px;
}

/* Titres généraux */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.3;
	color: var(--text-primary);
}

h1 {
	font-size: 2.5em;
	letter-spacing: -1px;
	margin-bottom: 24px;
}

h2 {
	font-size: 2em;
	letter-spacing: -0.5px;
	margin-bottom: 20px;
}

h3 {
	font-size: 1.5em;
	margin-bottom: 16px;
}

/* Liens généraux */
a {
	color: var(--accent-color);
	transition: color 0.2s ease;
}

a:hover {
	color: var(--accent-hover);
}

/* Scrollbar moderne */
::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: var(--background-color);
}

::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
	background: #94a3b8;
}

/* ========================================
   DASHBOARD SECTIONS
   ======================================== */

/* Model Performance Section */
.model-performance-section {
	display: flex;
	justify-content: center;
	margin: 40px 0;
}

.performance-card {
	background: white;
	padding: 16px 32px;
	border-radius: 16px;
	text-align: center;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-color);
	border-top: 3px solid var(--gold);
}

.performance-number {
	font-size: 1.8em;
	font-weight: 800;
	background: linear-gradient(135deg, #1a1a1a 0%, #c0c0c0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: #1a1a1a;
	background-clip: text;
	line-height: 1;
	margin-bottom: 8px;
}

.performance-label {
	font-size: 0.85em;
	color: var(--text-secondary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Section Headers */
.section-header {
	text-align: center;
	margin: 60px 0 40px 0;
}

.section-header h2 {
	font-size: 2.5em;
	color: var(--text-primary);
	margin: 0;
}

/* Section Divider */
.section-divider {
	text-align: center;
	margin: 80px 0 50px 0;
	padding: 40px 20px;
	background: #fafafa;
	border-radius: 16px;
	border-top: 3px solid var(--gold);
	border-bottom: 3px solid var(--gold);
}

.section-divider h2 {
	font-size: 2.5em;
	color: var(--text-primary);
	margin: 0 0 12px 0;
}

.section-divider p {
	font-size: 1.2em;
	color: var(--text-secondary);
	margin: 0;
}

/* Daily Picks Container */
.daily-picks-container {
	display: grid;
	grid-template-columns: minmax(280px, 400px) 1fr;
	gap: 32px;
	margin-bottom: 60px;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	width: calc(100% - 40px);
	padding: 0 20px;
}

/* Recommended Picks Card */
.recommended-picks-card {
	background: white;
	padding: 28px;
	border-radius: 16px;
	box-shadow: var(--shadow-lg);
	border: 2px solid var(--accent-color);
	box-sizing: border-box;
	max-width: 100%;
	min-width: 0;
}

.recommended-picks-card h3 {
	margin: 0 0 24px 0;
	font-size: 1.4em;
	color: var(--text-primary);
}

.no-picks-message {
	text-align: center;
	padding: 40px 20px;
	color: var(--text-secondary);
}

.no-picks-message p {
	margin: 8px 0;
	font-size: 1.1em;
}

.no-picks-message .subtitle {
	font-size: 0.9em;
	opacity: 0.8;
}

.picks-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.pick-item {
	width: 100%;
	max-width: 420px;
	background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
	padding: 16px;
	border-radius: 12px;
	border: 2px solid var(--success-color);
}

.pick-team {
	font-size: 1.3em;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.pick-details {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	color: var(--text-secondary);
	font-size: 0.95em;
}

.pick-odd {
	font-weight: 600;
	color: var(--text-primary);
}

.pick-stats {
	display: flex;
	justify-content: space-between;
	font-size: 0.9em;
}

.pick-prob {
	color: var(--text-secondary);
}

.pick-value {
	font-weight: 700;
	color: var(--success-color);
}

/* Today's Games Card */
.todays-games-card {
	background: white;
	padding: 28px;
	border-radius: 16px;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-color);
	box-sizing: border-box;
	max-width: 100%;
	min-width: 0;
	/* Ne pas s'étirer à la hauteur de la carte des picks : le footnote
	   « How it works » reste calé sous le tableau, sans vide blanc. */
	align-self: start;
}

/* Games Header Container */
.games-header-container {
	/* colonnes latérales 1fr égales => titre central parfaitement centré,
	   la colonne de gauche vide sert de spacer symétrique au switch */
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	column-gap: 16px;
	margin-bottom: 24px;
}

.games-header-container h3 {
	grid-column: 2;
	margin: 0;
	text-align: center;
	/* se replie sur plusieurs lignes au lieu de passer sous le switch */
	min-width: 0;
	overflow-wrap: break-word;
}

/* Odds Format Switch */
.odds-format-switch-container {
	grid-column: 3;
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.85em;
}

.odds-label {
	color: var(--text-secondary);
	font-weight: 500;
	font-size: 0.9em;
}

.odds-switch {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 24px;
}

.odds-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.odds-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #1a1a1a;
	border-radius: 24px;
	transition: all 0.3s ease;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.odds-slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background: white;
	border-radius: 50%;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.odds-switch input:checked + .odds-slider {
	background: var(--gold);
}

.odds-switch input:checked + .odds-slider:before {
	transform: translateX(24px);
}

.odds-switch input:focus + .odds-slider {
	box-shadow: 0 0 0 3px var(--gold-soft);
}

.todays-games-card h3 {
	margin: 0;
	font-size: 1.4em;
	color: var(--text-primary);
}

.games-header-container h3 {
	flex: 1;
	text-align: center;
}

#todays-game-table-container {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	box-sizing: border-box;
}

/* Trophy Cards Grid */
#trophies-tables-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 32px;
	margin: 40px 0;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.trophy-card {
	background: white;
	padding: 28px;
	border-radius: 16px;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-color);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trophy-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.trophy-card h3 {
	margin: 0 0 20px 0;
	font-size: 1.5em;
	color: var(--text-primary);
	text-align: center;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--border-color);
}

.trophy-card table {
	margin: 0;
}

.trophy-card table th {
	font-size: 15px;
	padding: 14px 16px;
}

.trophy-card table td {
	font-size: 15px;
	padding: 14px 16px;
}

.trophy-card table tfoot td {
	font-size: 13px;
	padding: 12px 16px;
}

/* Ceinture affichée à côté des champions en titre dans les rankings */
.fighter-cell {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.champion-belt {
	height: 1.1em;
	width: auto;
	flex-shrink: 0;
}

/* Responsive Dashboard */
@media (max-width: 1050px) {
	.daily-picks-container {
		grid-template-columns: 1fr;
		gap: 24px;
		width: 100%;
		max-width: 630px;
		padding: 0 20px;
	}
	
	.recommended-picks-card {
		order: -1;
	}
}

/* Dashboard table - use short names when in two-column layout (wide) */
@media (max-width: 1400px) and (min-width: 1201px) {
	#game-prediction .team-full {
		display: none;
	}
	
	#game-prediction .team-short {
		display: inline;
	}
	
	#game-prediction th,
	#game-prediction td {
		padding: 12px 10px;
		font-size: 14px;
	}
}

/* Dashboard table - use abbreviations when beside recommended card (narrow space) */
@media (max-width: 1060px) and (min-width: 1051px) {
	#game-prediction .team-full,
	#game-prediction .team-short {
		display: none;
	}
	
	#game-prediction .team-abbr {
		display: inline;
	}
	
	#game-prediction th,
	#game-prediction td {
		padding: 10px 6px;
		font-size: 13px;
	}
}

/* Dashboard table - use short names in wider range */
@media (max-width: 1200px) and (min-width: 1061px) {
	#game-prediction .team-full {
		display: none;
	}
	
	#game-prediction .team-short {
		display: inline;
	}
	
	#game-prediction th,
	#game-prediction td {
		padding: 12px 8px;
		font-size: 14px;
	}
}

/* Dashboard single column - handle 651-1050px overflow */
@media (max-width: 1050px) and (min-width: 651px) {
	#game-prediction .team-full,
	#game-prediction .team-short {
		display: none;
	}
	
	#game-prediction .team-abbr {
		display: inline;
	}
	
	#game-prediction th,
	#game-prediction td {
		padding: 10px 6px;
		font-size: 13px;
	}
}

@media (max-width: 1200px) {
	.games-header-container {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.games-header-container h3 {
		grid-column: 1;
		text-align: center;
		margin-bottom: 12px;
	}

	.odds-format-switch-container {
		grid-column: 1;
		justify-self: center;
	}
}

@media (max-width: 1220px) {
		#trophies-tables-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px;
	}
}

@media (max-width: 768px) {
	.section-header h2,
	.section-divider h2 {
		font-size: 1.8em;
	}
	
	.performance-number {
		font-size: 1.5em;
	}
	
	.performance-card {
		padding: 16px 24px;
	}
	
	.performance-label {
		font-size: 0.75em;
	}
	
	.daily-picks-container {
		gap: 20px;
	}
	
	.recommended-picks-card,
	.todays-games-card {
		padding: 20px;
	}
	
	#todays-game-table-container {
		overflow-x: auto;
	}
	
	.recommended-picks-card h3,
	.todays-games-card h3 {
		font-size: 1.2em;
		margin-bottom: 16px;
	}
	
	.pick-item {
		padding: 12px;
	}
	
	.pick-team {
		font-size: 1.1em;
	}
	
	.pick-details,
	.pick-stats {
		font-size: 0.85em;
	}
	
	#game-prediction {
		width: 100%;
	}
	
	#game-prediction th,
	#game-prediction td {
		padding: 12px 10px;
		font-size: 14px;
	}
	
	#trophies-tables-container {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 520px) {
	.section-divider {
		padding: 30px 15px;
		margin: 60px 0 40px 0;
	}
	
	.section-divider h2 {
		font-size: 1.5em;
	}
	
	.section-divider p {
		font-size: 1em;
	}
	
	.daily-picks-container {
		padding: 0 10px;
	}
	
	.recommended-picks-card,
	.todays-games-card {
		padding: 16px;
	}
	
	#todays-game-table-container {
		overflow-x: visible;
	}
	
	/* Use abbreviations at 520px */
	#game-prediction .team-short {
		display: none;
	}
	
	#game-prediction .team-abbr {
		display: inline;
	}
	
	#game-prediction {
		width: 100%;
	}
	
	#game-prediction th,
	#game-prediction td {
		padding: 10px 6px;
		font-size: 12px;
	}
	
	/* Shorten header labels (colonnes de pourcentage) */
	#game-prediction th:nth-child(3),
	#game-prediction th:nth-child(4) {
		font-size: 0;
	}

	#game-prediction th:nth-child(3)::after,
	#game-prediction th:nth-child(4)::after {
		content: '%';
		font-size: 11px;
	}
	
	.trophy-card {
		padding: 20px;
	}
}

@media (max-width: 400px) {
	.daily-picks-container {
		padding: 0 8px;
	}

	.recommended-picks-card,
	.todays-games-card {
		padding: 12px;
	}

	#game-prediction {
		min-width: 100%;
		font-size: 12px;
	}

	#game-prediction th,
	#game-prediction td {
		padding: 8px 4px;
		font-size: 11px;
	}

	/* Bouton unfold : réduire marges et texte pour éviter le débordement */
	#game-prediction .unfold-btn {
		gap: 4px;
		padding: 5px 6px;
		font-size: 12px;
	}

	#game-prediction .unfold-caret {
		font-size: 10px;
	}
	
	/* Benchmark table - cacher la colonne "Actual Winner" pour garder "Result" visible */
	.benchmark-table th:nth-child(3),
	.benchmark-table td:nth-child(3) {
		display: none;
	}
	
	.benchmark-table th,
	.benchmark-table td {
		padding: 10px 6px;
		font-size: 11px;
	}
	
	.benchmark-table h3 {
		font-size: 0.95em;
		padding: 12px !important;
	}
	
	header {
		padding: 0 8px;
	}
	
	#logo a {
		font-size: 16px;
	}
	
	.logo-img {
		height: 32px;
		margin-right: 8px;
	}
	
	nav ul li {
		margin-left: 1px;
	}
	
	nav ul li a {
		padding: 6px 8px;
		font-size: 12px;
	}
}

.champion-history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px 28px;
  margin: 24px 0 16px 0;
}

.champion-history-item {
  background: linear-gradient(120deg, #f9f7f2 70%, #fdf6e3 100%);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12),
              0 1.5px 8px rgba(0, 0, 0, 0.05);
  border: 1.5px solid #c0c0c0;
  padding: 14px 14px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 70px;
}

.champion-history-year {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.02rem;
  margin-bottom: 6px;
  letter-spacing: 0.4px;
}

.champion-history-teams {
  color: #222;
  font-size: 0.96rem;
  line-height: 1.6;
}


/* ========================================
   PREDICTION INFO FOOTNOTE
   ======================================== */

.prediction-info-footnote {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	margin-top: 16px;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.03) 100%);
	border-top: 1px solid var(--border-color);
	border-radius: 0 0 12px 12px;
	font-size: 0.875rem;
	color: var(--text-secondary);
}

.prediction-info-footnote .info-icon {
	font-size: 1rem;
	flex-shrink: 0;
}

.prediction-info-footnote .info-text {
	flex: 1;
	line-height: 1.5;
	text-align: left;
}

.prediction-info-footnote .info-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	white-space: nowrap;
	transition: color 0.2s;
}

.prediction-info-footnote .info-link:hover {
	color: var(--primary-dark);
}

.how-it-works-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.how-it-works-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 16px;
	line-height: 1.6;
	color: var(--text-primary);
}

.how-it-works-list li:last-child {
	margin-bottom: 0;
}

.how-it-works-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	background: var(--primary-color);
	border-radius: 50%;
}

@media (max-width: 600px) {
	.prediction-info-footnote {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding: 12px 14px;
	}
	
	.prediction-info-footnote .info-text {
		font-size: 0.8rem;
	}
	
	.prediction-info-footnote .info-link {
		font-size: 0.8rem;
	}
}

/* ========================================
   MODAL / POPUP
   ======================================== */

.modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.modal-content {
	background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
	margin: 5% auto;
	padding: 0;
	border: 2px solid var(--accent-color);
	border-radius: 16px;
	width: 90%;
	max-width: 550px;
	box-shadow: var(--shadow-xl);
	animation: slideIn 0.3s ease;
}

@keyframes slideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.modal-header {
	padding: 24px 28px;
	background: var(--gradient-primary);
	color: white;
	border-radius: 14px 14px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-header h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
}

.modal-close {
	color: white;
	font-size: 32px;
	font-weight: 300;
	cursor: pointer;
	transition: all 0.2s;
	line-height: 1;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.modal-close:hover {
	transform: scale(1.14);
}

.modal-body {
	padding: 28px;
	text-align: left;
	color: var(--text-primary);
}

.modal-warning {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 20px;
	padding: 16px;
	background: rgba(239, 68, 68, 0.08);
	border-left: 4px solid var(--error-color);
	border-radius: 8px;
}

.modal-info {
	background: rgba(0, 0, 0, 0.15);
	border: 1px solid var(--accent-color);
	border-radius: 12px;
	padding: 20px;
	margin: 20px 0;
}

.modal-info p {
	margin: 0 0 12px 0;
	font-weight: 600;
	color: var(--primary-color);
}

.modal-info ul {
	margin: 0;
	padding-left: 24px;
	list-style: none;
}

.modal-info ul li {
	margin: 8px 0;
	line-height: 1.6;
	position: relative;
}

.modal-info ul li::before {
	content: '';
	position: absolute;
	left: -24px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background: var(--primary-color);
	border-radius: 50%;
}

.modal-note {
	font-size: 0.95rem;
	color: var(--text-secondary);
	margin-top: 16px;
	margin-bottom: 0;
	font-style: italic;
}

.modal-footer {
	padding: 20px 28px 28px;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.modal-footer .btn {
	min-width: 140px;
}

@media (max-width: 600px) {
	.modal-content {
		width: 95%;
		margin: 10% auto;
	}

	.modal-header {
		padding: 20px;
	}

	.modal-header h2 {
		font-size: 1.25rem;
	}

	.modal-body {
		padding: 20px;
	}

	.modal-footer {
		padding: 16px 20px 20px;
		flex-direction: column;
	}

	.modal-footer .btn {
		width: 100%;
	}
}

@media (max-width: 768px) {
  .about-wrapper {
    padding: 20px 15px;
    margin-bottom: 32px;
  }

  .about-card {
    padding: 20px 16px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .about-card table {
    font-size: 0.85rem;
  }

  .about-card table th,
  .about-card table td {
    padding: 10px 8px;
  }

  .champion-history-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .about-wrapper {
    padding: 16px 12px;
    margin-bottom: 24px;
    border-radius: 16px;
  }

  .about-card {
    padding: 16px 12px 20px;
    border-radius: 12px;
  }

  .about-card table {
    font-size: 0.8rem;
  }

  .about-card table th,
  .about-card table td {
    padding: 8px 6px;
    font-size: 0.85em;
  }

  .about-wrapper .cta-button {
    padding: 14px 32px;
    font-size: 1.1em;
  }

  .champion-history-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .champion-history-item {
    padding: 10px;
  }
}

@media (max-width: 400px) {
  .about-wrapper {
    padding: 12px 8px;
    margin-bottom: 20px;
    border-radius: 12px;
  }

  .about-card {
    padding: 12px 8px 16px;
  }

  .about-card table {
    font-size: 0.75rem;
  }

  .about-card table th,
  .about-card table td {
    padding: 6px 4px;
    font-size: 0.75em;
  }

  .about-wrapper .cta-button {
    padding: 12px 24px;
    font-size: 1em;
  }
}

/* ========================================
   SUBSCRIBE PAGE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .subscribe-container {
    margin: 40px auto;
    padding: 15px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .plan-price {
    font-size: 3em;
  }

  .features-list {
    padding: 0 10px;
  }

  .historical-performance {
    padding: 24px 20px;
  }

  .performance-stats {
    gap: 12px;
  }

  .performance-stat .stat-value {
    font-size: 1.5em;
  }
}

@media (max-width: 520px) {
  .subscribe-container {
    margin: 30px auto;
    padding: 10px;
  }

  .pricing-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .plan-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .plan-price {
    font-size: 2.8em;
  }

  .plan-period {
    font-size: 1.1em;
  }

  .features-list {
    padding: 0 5px;
  }

  .features-list .feature-item {
    font-size: 14px;
    padding: 14px 0;
  }

  .season-info {
    padding: 20px;
  }

  .season-info h3 {
    font-size: 1.1em;
  }

  .historical-performance {
    padding: 20px 16px;
  }

	.profitability-note {
		margin: 0 0 24px 0;
		font-size: 0.78rem;
	}

	.profitability-tooltip__content {
		max-width: 200px;
	}

  .historical-performance h3 {
    font-size: 1em;
  }

  .performance-stats {
    flex-direction: column;
    gap: 16px;
  }

  .performance-stat {
    min-width: auto;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
  }

  .performance-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .performance-stat .stat-value {
    font-size: 1.6em;
  }

  .value-proposition {
    padding: 20px 16px;
  }

  .value-proposition .proposition-tagline {
    font-size: 1.05em;
  }

  .value-proposition .proposition-tagline .mobile-only {
    display: inline;
  }

  .value-proposition .proposition-tagline .desktop-only {
    display: none;
  }

  .billing-info {
    padding: 16px 20px;
  }

  .billing-item {
    font-size: 0.9em;
  }
}

@media (max-width: 400px) {
  .subscribe-container {
    margin: 20px auto;
    padding: 8px;
  }

  .pricing-card {
    padding: 24px 16px;
  }

  .plan-price {
    font-size: 2.5em;
  }

  .plan-period {
    font-size: 1em;
  }

  .features-list .feature-item {
    font-size: 13px;
  }

  .season-info {
    padding: 16px;
  }

  .historical-performance {
    padding: 16px 12px;
		margin: 16px 0 14px 0;
  }

	.profitability-note {
		margin: 0 0 20px 0;
		font-size: 0.75rem;
	}

	.profitability-tooltip__content {
		max-width: 180px;
	}

  .performance-stat .stat-value {
    font-size: 1.4em;
  }

  .performance-stat .stat-label {
    font-size: 0.8em;
  }

  .performance-stat .stat-sublabel {
    font-size: 0.7em;
  }

  .value-proposition {
    padding: 16px 12px;
  }

  .value-proposition .proposition-tagline {
    font-size: 1em;
  }

  .value-proposition .proposition-product {
    font-size: 1em;
  }

  .billing-info {
    padding: 14px 16px;
    margin: 16px 0;
  }

  .billing-item {
    font-size: 0.85em;
    padding: 8px 0;
  }

  .checkout-microcopy {
    font-size: 0.8em;
  }
}

/* ========================================
   ACCOUNT PAGE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
	.account-container {
		margin: 30px auto;
		padding: 15px;
	}
	
	.account-header {
		padding: 32px 24px;
	}
	
	.account-header h1 {
		font-size: 2em;
	}
	
	.account-header p {
		font-size: 1em;
	}
	
	.account-section {
		padding: 24px 20px;
	}
	
	.account-section h2 {
		font-size: 1.4em;
	}
	
	.info-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.payment-table {
		font-size: 13px;
	}
	
	.payment-table th,
	.payment-table td {
		padding: 12px 10px;
	}
}

@media (max-width: 520px) {
	.account-container {
		margin: 20px auto;
		padding: 10px;
	}
	
	.account-header {
		padding: 24px 16px;
		border-radius: 16px;
	}
	
	.account-header h1 {
		font-size: 1.6em;
	}
	
	.account-header p {
		font-size: 0.95em;
	}
	
	.account-section {
		padding: 20px 15px;
		border-radius: 12px;
	}
	
	.account-section h2 {
		font-size: 1.2em;
		padding-bottom: 12px;
	}
	
	.info-item {
		padding: 16px;
	}
	
	.payment-table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	.payment-table th,
	.payment-table td {
		padding: 10px 8px;
		font-size: 12px;
	}
	
	.status-badge {
		font-size: 0.8em;
		padding: 4px 12px;
	}
}

/* Blurred data for non-subscribers */
.blurred-data {
	position: relative;
}

.blur-text {
	filter: blur(6px);
	-webkit-filter: blur(6px);
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	color: #999;
	font-weight: 500;
}

/* Subscription required message */
.subscription-required-message {
	text-align: center;
	padding: 40px 20px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 12px;
	border: 2px dashed #dee2e6;
}

.subscription-required-message p {
	margin: 8px 0;
	color: var(--text-secondary);
	line-height: 1.6;
}

.subscription-required-message p strong {
	color: var(--text-primary);
	font-size: 1.1em;
}

/* CTA sections */
.unlock-cta-top,
.unlock-cta-bottom {
	text-align: center;
	padding: 24px 20px;
	background: var(--gold-soft);
	border: 1px solid rgba(194, 162, 74, 0.35);
	border-radius: 12px;
	margin-bottom: 20px;
}

.unlock-cta-bottom {
	margin-bottom: 0;
	margin-top: 20px;
}

.cta-catchphrase {
	font-size: 1.1em;
	color: var(--text-secondary);
	margin: 0 0 16px 0;
	font-weight: 500;
}

.btn-unlock {
	display: inline-block;
	background: var(--gold);
	color: #1a1a1a;
	padding: 14px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.05em;
	transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 4px 14px rgba(194, 162, 74, 0.3);
}

.btn-unlock:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(168, 136, 58, 0.4);
	background: var(--gold-dark);
	color: #1a1a1a;
}

.btn-unlock-picks {
	display: inline-block;
	background: var(--gold);
	color: #1a1a1a;
	padding: 14px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.05em;
	transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 4px 14px rgba(194, 162, 74, 0.3);
	margin-top: 20px;
}

.btn-unlock-picks:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(168, 136, 58, 0.4);
	background: var(--gold-dark);
	color: #1a1a1a;
}

/* Mobile responsiveness for blur and CTAs */
@media (max-width: 768px) {
	.unlock-cta-top,
	.unlock-cta-bottom {
		padding: 20px 15px;
	}
	
	.cta-catchphrase {
		font-size: 1em;
	}
	
	.btn-unlock {
		padding: 12px 24px;
		font-size: 1em;
	}
	
	.btn-unlock-picks {
		padding: 12px 24px;
		font-size: 1em;
	}
	
	.subscription-required-message {
		padding: 30px 15px;
	}
}

/* Preview picks for non-subscribers */
.preview-picks {
	margin-top: 20px;
	opacity: 0.9;
}

.preview-pick {
	position: relative;
	cursor: not-allowed;
}

.blurred-pick-data {
	position: relative;
}

.blurred-pick-data .blur-text {
	filter: blur(5px);
	-webkit-filter: blur(5px);
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
}
