@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Bebas+Neue&display=swap');

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

body {
	font-family: 'Arial', 'Helvetica', sans-serif;
	line-height: 1.6;
	color: #2c3e50;
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
	background-attachment: fixed;
}

header {
	background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
	color: #2c3e50;
	padding: 3rem 0;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border-bottom: 5px solid #e94560;
}

header h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
	font-weight: 700;
	font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
	color: #1a1a1a;
}

header p {
	font-size: 1.3rem;
	opacity: 0.95;
	font-family: 'Arial', sans-serif;
	font-weight: 500;
	color: #444;
}

nav {
	background: #ffffff;
	padding: 1.2rem 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 3px solid #e94560;
}

nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	padding: 0 1rem;
}

nav a {
	color: #2c3e50;
	text-decoration: none;
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	transition: all 0.3s;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 2px solid transparent;
	font-size: 1.1rem;
}

nav a:hover {
	background: #e94560;
	color: white;
	border: 2px solid #e94560;
	transform: translateY(-2px);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 1rem;
}

.hero-image {
	text-align: center;
	margin-bottom: 3rem;
	padding: 2rem;
	background: #ffffff;
	border-radius: 15px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
	max-width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: contain;
}

.intro {
	background: #ffffff;
	padding: 2.5rem;
	border-radius: 15px;
	margin-bottom: 3rem;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	border: 2px solid #ddd;
}

.intro h2 {
	color: #1a1a1a;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
}

.intro p {
	font-family: 'Arial', sans-serif;
	font-size: 1.1rem;
	line-height: 1.8;
	color: #2c3e50;
}

.scam-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	margin-bottom: 3rem;
}

.scam-card {
	background: #ffffff;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	cursor: pointer;
	border: 3px solid #e94560;
}

.scam-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 15px 50px rgba(233, 69, 96, 0.3);
	border-color: #ff4757;
}

.scam-card-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 1.5rem;
}

.scam-number {
	background: linear-gradient(135deg, #e94560 0%, #ff6b9d 100%);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 15px rgba(233, 69, 96, 0.5);
}

.scam-card h3 {
	color: #1a1a1a;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
}

.scam-card p {
	color: #2c3e50;
	font-size: 1rem;
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
}

.scam-detail {
	background: #ffffff;
	border-radius: 15px;
	padding: 3rem;
	margin-bottom: 2rem;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	display: none;
	border: 3px solid #e94560;
}

.scam-detail.active {
	display: block;
}

.scam-detail-image {
	width: 100%;
	max-width: 600px;
	height: auto;
	border-radius: 15px;
	margin: 2rem auto;
	display: block;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.inline-example-image {
	width: 100%;
	max-width: 800px;
	height: auto;
	border-radius: 10px;
	margin: 1.5rem auto;
	display: block;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	border: 2px solid #ddd;
}

.scam-detail h2 {
	color: #1a1a1a;
	font-size: 2.8rem;
	margin-bottom: 1.5rem;
	border-bottom: 5px solid #e94560;
	padding-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
	font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
}

.section {
	margin: 2.5rem 0;
	background: #f9f9f9;
	padding: 2rem;
	border-radius: 10px;
	border-left: 5px solid #e94560;
}

.section h3 {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: white;
	padding: 1.2rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	font-size: 1.6rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
}

.section.warning h3 {
	background: linear-gradient(135deg, #ff4757 0%, #e94560 100%);
}

.section.tips h3 {
	background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
}

.section p,
.section ul {
	font-family: 'Arial', sans-serif;
	font-size: 1.1rem;
	line-height: 1.8;
	color: #2c3e50;
}

.section ul {
	list-style-position: inside;
	padding-left: 1rem;
}

.section li {
	margin: 1rem 0;
	padding-left: 0.5rem;
	font-weight: 500;
}

.info-box {
	background: #f0f0f0;
	border-left: 6px solid #e94560;
	padding: 2rem;
	margin: 2rem 0;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-box h4 {
	color: #1a1a1a;
	margin-bottom: 1rem;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
}

.info-box p {
	color: #2c3e50;
	font-family: 'Arial', sans-serif;
	font-size: 1.1rem;
	line-height: 1.8;
}

.links {
	background: #f9f9f9;
	padding: 1.5rem;
	border-radius: 10px;
	margin-top: 1.5rem;
	border: 2px solid #ddd;
}

.links h4 {
	color: #1a1a1a;
	font-size: 1.3rem;
	margin-bottom: 1rem;
	text-transform: uppercase;
	font-weight: 700;
	font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
}

.links a {
	color: #e94560;
	text-decoration: none;
	display: block;
	margin: 0.8rem 0;
	word-break: break-all;
	font-family: 'Arial', sans-serif;
	font-weight: 600;
	transition: color 0.3s;
}

.links a:hover {
	color: #ff4757;
	text-decoration: underline;
}

.back-btn {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: white;
	border: none;
	padding: 1.2rem 2.5rem;
	border-radius: 10px;
	cursor: pointer;
	font-size: 1.2rem;
	margin-bottom: 2rem;
	transition: all 0.3s;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-btn:hover {
	background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

footer {
	background: #2c3e50;
	color: white;
	text-align: center;
	padding: 2.5rem;
	margin-top: 3rem;
	border-top: 4px solid #e94560;
	font-family: 'Arial', sans-serif;
}

footer a {
	color: #e94560;
	text-decoration: none;
	font-weight: 600;
}

footer a:hover {
	text-decoration: underline;
}

.emergency {
	background: linear-gradient(135deg, #e94560 0%, #ff4757 100%);
	color: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	margin: 2.5rem 0;
	box-shadow: 0 8px 30px rgba(233, 69, 96, 0.5);
	border: 3px solid #ffffff;
}

.emergency h3 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
}

.emergency p {
	font-size: 1.2rem;
	margin: 1rem 0;
	font-weight: 600;
}

.emergency a {
	color: white;
	font-weight: 700;
	text-decoration: underline;
	font-size: 1.3rem;
}

.legal-notice {
	background: #ffffff;
	padding: 2.5rem;
	border-radius: 15px;
	margin-bottom: 3rem;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	border: 2px solid #ddd;
}

.legal-notice h2 {
	color: #1a1a1a;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
	border-bottom: 5px solid #e94560;
	padding-bottom: 1rem;
}

.legal-notice h3 {
	color: #2c3e50;
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: 700;
	font-family: 'Bebas Neue', 'Oswald', sans-serif;
}

.legal-notice p {
	font-family: 'Arial', sans-serif;
	font-size: 1.1rem;
	line-height: 1.8;
	color: #2c3e50;
	margin-bottom: 1rem;
}

@media (max-width: 768px) {
	header h1 {
		font-size: 2.2rem;
		letter-spacing: 1px;
	}

	header p {
		font-size: 1.1rem;
	}

	nav ul {
		flex-direction: column;
		align-items: center;
	}

	.scam-grid {
		grid-template-columns: 1fr;
	}

	.scam-detail h2 {
		font-size: 2rem;
	}

	.section h3 {
		font-size: 1.3rem;
	}

	.intro h2 {
		font-size: 2rem;
	}

	.emergency h3 {
		font-size: 1.6rem;
	}
}

/* Menu Burger */
.burger-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1000;
	background: transparent;
	border: none;
	color: inherit;
}

.burger-menu span {
	width: 30px;
	height: 3px;
	background-color: #2c3e50;
	margin: 4px 0;
	transition: 0.3s;
	border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-6px, 6px);
	background-color: #e94560;
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
}

.burger-menu.active span:nth-child(3) {
	transform: rotate(45deg) translate(-6px, -6px);
	background-color: #e94560;
}

.menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 998;
}

.menu-overlay.active {
	display: block;
}

@media screen and (max-width: 968px) {
	header h1 {
		font-size: 2.5rem;
		letter-spacing: 2px;
		padding: 0 1rem;
	}

	header p {
		font-size: 1.1rem;
		padding: 0 1rem;
	}

	.burger-menu {
		display: flex;
	}

	nav {
		position: relative;
	}

	nav ul {
		position: fixed;
		left: -100%;
		top: 0;
		flex-direction: column;
		background-color: #ffffff;
		width: 280px;
		height: 100vh;
		padding: 80px 20px 20px;
		box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
		transition: left 0.3s ease;
		gap: 0;
		align-items: flex-start;
		z-index: 999;
		overflow-y: auto;
	}

	nav ul.active {
		left: 0;
	}

	nav ul li {
		width: 100%;
		margin: 0.5rem 0;
	}

	nav a {
		display: block;
		width: 100%;
		padding: 1rem;
		font-size: 1rem;
		border-bottom: 1px solid #eee;
		border-radius: 0;
	}

	nav a:hover {
		transform: none;
		background-color: #e94560;
	}

	.scam-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 2rem;
	}

	.container {
		padding: 2rem 1rem;
	}
}

@media screen and (max-width: 600px) {
	header {
		padding: 2rem 1rem;
	}

	header h1 {
		font-size: 1.8rem;
		letter-spacing: 1px;
	}

	header p {
		font-size: 0.95rem;
	}

	.burger-menu {
		right: 1rem;
	}

	nav ul {
		width: 100%;
	}

	.container {
		padding: 1.5rem 0.75rem;
	}

	.hero-image {
		padding: 1rem;
		margin-bottom: 2rem;
	}

	.intro {
		padding: 1.5rem;
		margin-bottom: 2rem;
	}

	.intro h2 {
		font-size: 1.6rem;
	}

	.intro p {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.scam-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.scam-card {
		padding: 1.5rem;
	}

	.scam-card h3 {
		font-size: 1.2rem;
	}

	.scam-card p {
		font-size: 0.9rem;
	}

	.scam-number {
		font-size: 2rem;
		width: 50px;
		height: 50px;
	}

	.emergency {
		padding: 1.5rem;
	}

	.emergency p {
		font-size: 1rem;
	}

	.emergency a {
		font-size: 1.1rem;
	}

	/* Amélioration de la lisibilité des détails d'arnaque sur mobile */
	.scam-detail {
		padding: 1.5rem;
	}

	.scam-detail h2 {
		font-size: 1.5rem;
		letter-spacing: 1px;
		margin-bottom: 1rem;
		line-height: 1.3;
	}

	.scam-detail h3 {
		font-size: 1.3rem;
	}

	/* Sections avec texte plus compact et lisible */
	.section {
		margin: 1.5rem 0;
		padding: 1rem;
	}

	.section h3 {
		font-size: 1.2rem;
		padding: 0.8rem;
		margin-bottom: 1rem;
		letter-spacing: 1px;
	}

	.section p,
	.section ul {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.section li {
		margin: 0.7rem 0;
		padding-left: 0.3rem;
		font-size: 0.95rem;
	}

	/* Info box plus compact */
	.info-box {
		padding: 1.2rem;
		margin: 1.5rem 0;
	}

	.info-box h4 {
		font-size: 1.1rem;
		margin-bottom: 0.7rem;
	}

	.info-box p {
		font-size: 0.9rem;
		line-height: 1.6;
	}

	/* Links plus lisibles */
	.links {
		padding: 1rem;
		margin-top: 1rem;
	}

	.links h4 {
		font-size: 1.1rem;
	}

	.links a {
		font-size: 0.85rem;
		margin: 0.5rem 0;
	}

	.back-btn {
		font-size: 0.9rem;
		padding: 0.8rem 1.5rem;
		margin-bottom: 1.5rem;
	}

	.legal-notice {
		padding: 1.5rem;
	}

	.legal-notice h2 {
		font-size: 1.8rem;
	}

	.legal-notice h3 {
		font-size: 1.2rem;
	}

	.legal-notice p {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	footer {
		font-size: 0.85rem;
		padding: 1.5rem 1rem;
	}
}

@media screen and (max-width: 380px) {
	header h1 {
		font-size: 1.5rem;
	}

	header p {
		font-size: 0.85rem;
	}

	.scam-card {
		padding: 1rem;
	}

	.scam-card h3 {
		font-size: 1.1rem;
	}

	.scam-card p {
		font-size: 0.85rem;
	}

	.scam-number {
		font-size: 1.5rem;
		width: 40px;
		height: 40px;
	}

	/* Détails d'arnaque encore plus compact sur très petits écrans */
	.scam-detail {
		padding: 1rem;
	}

	.scam-detail h2 {
		font-size: 1.3rem;
		line-height: 1.2;
	}

	.section {
		padding: 0.8rem;
		margin: 1rem 0;
	}

	.section h3 {
		font-size: 1.1rem;
		padding: 0.6rem;
	}

	.section p,
	.section ul,
	.section li {
		font-size: 0.9rem;
		line-height: 1.5;
	}

	.info-box {
		padding: 1rem;
	}

	.info-box h4 {
		font-size: 1rem;
	}

	.info-box p {
		font-size: 0.85rem;
	}

	.links a {
		font-size: 0.8rem;
	}

	.emergency p {
		font-size: 0.95rem;
	}

	.emergency a {
		font-size: 1rem;
	}

	.back-btn {
		font-size: 0.85rem;
		padding: 0.7rem 1.2rem;
	}
}
