@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
	--blue: rgb(74, 102, 111);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


body {
	font-family: 'Outfit', monospace;
	padding: 30px;
}

h1 {
	font-size: 40px;
	margin-bottom: 20px;
}

h2 {
	margin-bottom: 20px;
	font-size: 20px;
	color: var(--blue);
	text-transform: uppercase;
}

h2 a {
	text-decoration: none;
}

a {
	color: var(--blue);
}

.drop-zone {
	margin-bottom: 15px;
	border: 3px dashed #aaa;
	border-radius: 10px;
	padding: 50px;
	text-align: center;
	color: #666;
	cursor: pointer;
	transition: 0.3s;
}

.drop-zone.dragover {
	border-color: #333;
	background: #fafafa;
}

.drop-zone input {
	display: none;
}

.file-list {
	margin-top: 20px;
}

.file-list li {
	list-style: none;
	margin: 5px 0;
}



.global {
	width: 800px;
}

.label {
	font-size: 24px;
}

.plus {
	font-size: 100px;
	font-weight: 200;
	animation: plusAnim 3s infinite;
}

@keyframes plusAnim {
	80% {
		scale: 1.0
	}

	85% {
		scale: 1.5
	}

	90% {
		scale: 1.0
	}

	95% {
		scale: 1.5
	}

	100% {
		scale: 1.0
	}

}

.radio {
	margin-bottom: 5px;
	padding: 0px 10px;
	height: 60px;
	display: flex;
	align-items: center;
	font-size: 20px;
	background-color: rgba(149, 192, 206, 0.418);
	border-radius: 4px;
	cursor: pointer;
	color: rgb(59, 86, 95);
	opacity: 0.75;
	transition: .3s;
}

.radio:hover {
	color: black;
	opacity: 1;
}

.radio.selected {
	background-color: rgba(149, 192, 206, 0.8);
	border: 2px solid black;
	color: black;
	opacity: 1;
}


.radio [class*="icon"] {
	display: inline-block;
	scale: 0;
	transition: .3s;
}

.radio.selected [class*="icon"] {
	scale: 1;
	rotate: 360deg;
	margin-right: 15px;
}

.radio em {
	font-size: .7em;
}

.radio input {
	width: 100px;
	margin: 0 5px;
	padding: 0 15px;
	text-align: center;
	font-size: 1.3em;
	font-family: inherit;
	font-weight: 700;
}

#submit {
	display: block;
	margin-top: 20px;
}

#downloadzip {
	margin: 50px 0;
}

.backhome {
	display: block;
	margin: 50px 0 ;
	font-size: 24px;
	color: var(--blue);
}

.langs {
	position: absolute;
	right: 10px;
	top: 10px;
}

.btn {
	padding: 10px 20px;
	cursor: pointer;

	min-width: 100px;
	background-color: rgba(149, 192, 206, 0.8);
	padding-right: 50px;
	border: 2px solid black;
	font-family: inherit;
	border-radius: 4px;
	font-size: 30px;
	font-weight: 700;
	text-decoration: none;
	color: inherit;
	transition: .3s;
}

.btn span {
	display: inline-block;
	/* scale: 0; */
	vertical-align: middle;
	position: relative;
	top: -3px;
	margin-right: 10px;
	/* translate: -20px 0; */
	transition: .2s;
}

.btn:hover span {
	scale: 1.2;
	translate: 10px 0;
	/* color: green; */
}

.btn:hover {
	background-color: #ffffff;
}

table {
	border-collapse: collapse;
	width: 100%;
	max-width: 800px;
	margin-bottom: 50px;
}

th,
td {
	border: 1px solid #ccc;
	padding: 6px 10px;
	text-align: left;
}

th {
	background: #f0f0f0;
}

tr:nth-child(even) {
	background: #fafafa;
}

.seo {
	margin-top: 300px;
	
	width: 700px;
}



.ads {
	position: absolute;
	right: 200px;
	top: 200px;
    font-family: 'Outfit', sans-serif;
    background: #4f86f7; /* bleu moderne */
    border-radius: 50%; /* rond parfait */
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 50px auto;
}

.ads:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.ads strong {
    font-size: 3em;
    color: #ffdd57; /* jaune doux pour contraste */
    margin-bottom: 10px;
    animation: pulse 1.2s infinite alternate;
}

.ads p {
    font-size: 1.1em;
    color: #e0e0e0;
}

/* Animation du nombre */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
