* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	overflow-x: hidden;
}

body {
	font-family: 'Poppins', sans-serif;
	min-height: 100vh;
	background: #0a0a0a;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 20px;
	overflow-y: auto;
}

/* Fond animé avec gradients - FIXED pour pas bouger avec le scroll */
.background-gradient {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.background-gradient::before {
	content: '';
	position: absolute;
	width: 150%;
	height: 150%;
	background: radial-gradient(circle at 20% 80%, #1e3c72 0%, transparent 50%),
				radial-gradient(circle at 80% 20%, #2a5298 0%, transparent 50%),
				radial-gradient(circle at 40% 40%, #7e57c2 0%, transparent 50%);
	animation: float 10s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	33% { transform: translate(-20px, -20px) rotate(120deg); }
	66% { transform: translate(20px, -10px) rotate(240deg); }
}

/* Rayons de soleil animés - FIXED aussi */
.sun-rays {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: repeating-conic-gradient(
		from 0deg at 50% 50%,
		rgba(255, 235, 59, 0.03) 0deg,
		rgba(255, 235, 59, 0.15) 5deg,
		transparent 10deg,
		transparent 20deg
	);
	animation: rotate 20s linear infinite;
	z-index: 1;
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Container principal - SCROLLABLE */
.container {
	position: relative;
	z-index: 10;
	width: 100%;
	max-width: 550px;
	margin: auto;
	padding: 40px 0;
}

/* Carte glassmorphism */
.card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	padding: 60px 40px 50px;
	text-align: center;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
				inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

/* Effet de brillance */
.card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(255, 255, 255, 0.1) 50%,
		transparent 70%
	);
	animation: shine 3s infinite;
}

@keyframes shine {
	0% { transform: translateX(-100%) translateY(-100%); }
	100% { transform: translateX(100%) translateY(100%); }
}

/* Logo */
.logo {
	width: 240px;
	height: auto;
	margin-bottom: 35px;
	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
	animation: pulse 2s ease-in-out infinite;
	position: relative;
	z-index: 2;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

/* Titre */
h1 {
	font-size: 3.2em;
	font-weight: 900;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1;
}

.jus-de {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.canne {
	background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.neuf-sept-quatre {
	background: linear-gradient(135deg, #fee140 0%, #fa709a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 1.2em;
}

/* Badge 974 */
.badge {
	display: inline-block;
	background: linear-gradient(135deg, #ff0844, #ff4e50);
	color: white;
	padding: 10px 30px;
	border-radius: 35px;
	font-weight: 700;
	font-size: 1.2em;
	margin: 30px 0;
	box-shadow: 0 5px 20px rgba(255, 8, 68, 0.4);
	position: relative;
	overflow: hidden;
	letter-spacing: 1px;
}

.badge::before {
	content: '🌴';
	position: absolute;
	left: 12px;
	animation: sway 2s ease-in-out infinite;
}

.badge::after {
	content: '🌴';
	position: absolute;
	right: 12px;
	animation: sway 2s ease-in-out infinite reverse;
}

@keyframes sway {
	0%, 100% { transform: rotate(-5deg); }
	50% { transform: rotate(5deg); }
}

/* Message - MARGES RÉDUITES */
.message {
	font-size: 1.25em;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.8;
	margin-bottom: 25px;
	font-weight: 400;
	letter-spacing: 0.3px;
}

.message strong {
	color: #4ade80;
	font-weight: 700;
	text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

/* Section Marchés - MARGES OPTIMISÉES */
.markets-section {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 20px 20px;
	margin: 15px 0;
	backdrop-filter: blur(5px);
}

.market-title {
	font-size: 1.1em;
	margin-bottom: 15px;
	color: #fff;
}

.market-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(255, 78, 80, 0.1));
	border-radius: 15px;
	padding: 15px;
	margin-bottom: 10px;
	position: relative;
	border: 1px solid rgba(74, 222, 128, 0.2);
	transition: all 0.3s ease;
}

.market-item:hover {
	transform: translateX(5px);
	border-color: rgba(74, 222, 128, 0.5);
	box-shadow: 0 5px 20px rgba(74, 222, 128, 0.2);
}

.market-item:last-child {
	margin-bottom: 0;
}

.market-day {
	color: #ffd700;
	font-weight: 700;
	font-size: 1.05em;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.market-info {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95em;
	text-align: center;
}

/* Marché spécial (nuit) */
.market-item.special {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(255, 78, 80, 0.15));
	border-color: rgba(102, 126, 234, 0.3);
}

.market-item.special:hover {
	box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.market-badge {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5em;
	animation: moonGlow 2s ease-in-out infinite;
}

@keyframes moonGlow {
	0%, 100% { 
		filter: brightness(1);
		transform: translateY(-50%) scale(1);
	}
	50% { 
		filter: brightness(1.3);
		transform: translateY(-50%) scale(1.1);
	}
}

/* Animation d'apparition */
.market-item {
	animation: slideIn 0.5s ease-out forwards;
	opacity: 0;
}

.market-item:nth-child(2) { animation-delay: 0.1s; }
.market-item:nth-child(3) { animation-delay: 0.2s; }
.market-item:nth-child(4) { animation-delay: 0.3s; }

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* ========================================
   SECTION VIDÉO YOUTUBE
======================================== */
.video-section {
	margin: 35px 0;
	position: relative;
	z-index: 2;
}

.video-title {
	font-size: 1.2em;
	color: #fff;
	margin-bottom: 20px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.video-container {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: 15px;
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
				inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.video-container:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3),
				inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* Ratio 16:9 */
	height: 0;
	overflow: hidden;
	border-radius: 15px;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(255, 78, 80, 0.2));
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 15px;
}

/* Overlay avec bouton play */
.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(255, 78, 80, 0.4));
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	transition: opacity 0.3s ease;
	z-index: 10;
	cursor: pointer;
}

.video-overlay:hover {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(255, 78, 80, 0.5));
}

/* Bouton Play */
.play-button {
	width: 90px;
	height: 90px;
	background: linear-gradient(135deg, #667eea, #4ade80);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 10px 40px rgba(102, 126, 234, 0.5),
				0 0 0 0 rgba(102, 126, 234, 0.7);
	animation: playPulse 2s ease-in-out infinite;
	position: relative;
}

.play-button::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.3);
	animation: ripple 2s ease-out infinite;
}

@keyframes playPulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

@keyframes ripple {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

.play-button:hover {
	transform: scale(1.15);
	box-shadow: 0 15px 50px rgba(102, 126, 234, 0.7),
				0 0 0 20px rgba(102, 126, 234, 0.1);
}

.play-button svg {
	width: 35px;
	height: 35px;
	color: white;
	fill: white;
	margin-left: 5px; /* Décale légèrement à droite pour centrer visuellement */
	filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

/* ========================================
   FIN SECTION VIDÉO
======================================== */

/* Cannes animées et Bouteilles - MARGES OPTIMISÉES */
.cannes-container {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 35px;
	margin: 30px 0;
	height: 120px;
}

/* Verre central */
.canne-emoji {
	font-size: 60px;
	animation: bounce 1.5s ease-in-out infinite;
	filter: drop-shadow(0 5px 10px rgba(74, 222, 128, 0.3));
	animation-delay: 0.3s;
}

/* Bouteilles CSS */
.bottle {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	animation: bounce 1.5s ease-in-out infinite;
	filter: drop-shadow(0 8px 15px rgba(255, 215, 0, 0.3));
}

.bottle.medium {
	height: 80px;
	animation-delay: 0s;
}

.bottle.large {
	height: 100px;
	animation-delay: 0.6s;
}

/* Bouchon orange */
.bottle-cap {
	width: 20px;
	height: 8px;
	background: linear-gradient(135deg, #ff8c00, #ff6b00);
	border-radius: 3px 3px 0 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 -2px 4px rgba(255, 140, 0, 0.4);
}

/* Col de la bouteille - PLUS PETIT */
.bottle-neck {
	width: 16px;
	height: 6px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
	position: relative;
	clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
	z-index: 2; /* Ajout pour masquer la bordure du corps */
	margin-bottom: -1px; /* Chevauche légèrement le corps */
}

/* Corps de la bouteille - COINS PLUS ARRONDIS */
.bottle-body {
	width: 35px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	flex-grow: 1;
}

.bottle.large .bottle-body {
	width: 40px;
	border-radius: 14px;
}

.bottle.large .bottle-cap {
	width: 22px;
}

.bottle.large .bottle-neck {
	width: 18px;
	height: 6px;
}

/* Liquide jus de canne (jaune/beige) - PLEIN SANS EFFET SHIMMER */
.bottle-liquid {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: linear-gradient(180deg, 
		rgba(255, 235, 180, 0.9) 0%,
		rgba(255, 220, 130, 0.95) 30%,
		rgba(240, 200, 100, 1) 100%);
	border-radius: 11px;
	animation: liquidWave 3s ease-in-out infinite;
}

.bottle.large .bottle-liquid {
	border-radius: 13px;
}

/* Bulles dans le jus */
.bottle-liquid::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	height: 3px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	animation: bubbleUp 2s ease-in-out infinite;
}

/* Animations bouteilles */
@keyframes bounce {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes liquidWave {
	0%, 100% { height: 100%; }
	50% { height: 95%; }
}

@keyframes bubbleUp {
	0% { 
		bottom: 10px;
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	100% { 
		bottom: 80%;
		opacity: 0;
	}
}

/* Loading moderne - MARGES OPTIMISÉES */

/* Footer - MARGES OPTIMISÉES */
.footer {
	margin-top: 30px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.5);
	font-size: 1em;
}

.footer .phone {
	display: inline-block;
	color: #4ade80;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1em;
	margin: 8px 0;
	padding: 8px 20px;
	border-radius: 25px;
	background: rgba(74, 222, 128, 0.1);
	border: 1px solid rgba(74, 222, 128, 0.3);
	transition: all 0.3s ease;
	letter-spacing: 1px;
}

.footer .phone:hover {
	background: rgba(74, 222, 128, 0.2);
	border-color: rgba(74, 222, 128, 0.5);
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(74, 222, 128, 0.3);
}

.footer .by {
	color: #ffd700;
	font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
	.container {
		padding: 20px 0;
	}
	
	h1 { 
		font-size: 2.3em; 
	}
	
	.card { 
		padding: 50px 30px 40px;
	}
	
	.logo { 
		width: 200px; 
	}
	
	.message { 
		font-size: 1.15em; 
		margin-bottom: 20px;
	}
	
	.badge { 
		font-size: 1.1em; 
	}
	
	.markets-section {
		padding: 15px 15px;
		margin: 12px 0;
	}
	
	.market-item {
		padding: 12px;
		margin-bottom: 8px;
	}
	
	.market-day {
		font-size: 0.95em;
	}
	
	.market-info {
		font-size: 0.85em;
	}
	
	/* Responsive vidéo */
	.video-section {
		margin: 30px 0;
	}
	
	.video-title {
		font-size: 1.1em;
		margin-bottom: 15px;
	}
	
	.video-container {
		padding: 12px;
	}
	
	.play-button {
		width: 75px;
		height: 75px;
	}
	
	.play-button svg {
		width: 30px;
		height: 30px;
	}
	
	.cannes-container {
		gap: 25px;
		height: 100px;
		margin: 25px 0;
	}
	
	.bottle.medium {
		height: 65px;
	}
	
	.bottle.large {
		height: 80px;
	}
	
	.canne-emoji {
		font-size: 50px;
	}
	
	.loading-container {
		margin: 25px 0;
	}
	
	.footer {
		margin-top: 25px;
		padding-top: 20px;
	}
}

@media (max-width: 400px) {
	h1 { 
		font-size: 1.9em; 
	}
	
	.logo { 
		width: 170px; 
	}
	
	.message { 
		font-size: 1.05em; 
	}
	
	.video-title {
		font-size: 1em;
	}
	
	.play-button {
		width: 65px;
		height: 65px;
	}
	
	.play-button svg {
		width: 25px;
		height: 25px;
	}
}
