* {
	font-family: 'Poppins';
	text-align: center;
	font-weight: 50;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	background-color: var(--bodyBackgroundColor);
	color: var(--textBaseColor);
	margin: 0;
	padding: 0;
}

@media only screen and (max-width: 1220px) {

	.container-leak,
	.container-news,
	.container-blog,
	.container-shop {
		display: flex;
		margin: 50px auto;
		width: 95%;
		background-color: var(--homeLeakBackground);
		box-shadow: 0 0 0 2px #222222;
		border-radius: 15px;
	}

	.leak,
	.news,
	.blog,
	.shop {
		display: block;
		width: 100%;
	}

	.header-leak,
	.header-news,
	.header-blog,
	.header-shop {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding: 10px 10px 0 10px;
	}

	.head-leak,
	.head-news,
	.head-blog,
	.head-shop {
		width: 100%;
	}

	.title-leak,
	.title-news,
	.title-blog,
	.title-shop {
		text-align: left;
		text-transform: uppercase;
		font-size: 16px;
		font-family: var(--fontFamilyItemTitle);
		font-display: swap;
	}

	.description-leak,
	.description-news,
	.description-blog,
	.description-shop {
		text-align: left;
		font-size: 10px;
	}

	.more-leak,
	.more-news,
	.more-blog,
	.more-shop {
		width: 100%;
		position: relative;
	}

	.more-leak-action,
	.more-shop-action {
		width: auto;
		height: 30px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.more-leak-action a {
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.more-leak-action p,
	.more-shop-action p {
		font-size: 10px;
		text-wrap-mode: nowrap;
		padding: 10px 20px;
	}

	.more-leak-action img,
	.more-shop-action img {
		width: 100%;
	}

	.content-leak,
	.content-news,
	.content-blog,
	.content-shop {
		width: 100%;
	}

	/* LEAK */

	.container-leak {
		margin: 150px auto 50px;
	}

	.more-leak {
		width: auto;
	}

	.athena-leak {
		display: inline-flex;
		flex-flow: row wrap;
		justify-content: center;
		overflow: hidden;
		width: 100%;
		height: auto;
		padding: 5px;
	}

	.item-leak {
		position: relative;
		overflow: hidden;
		width: 90px;
		height: 90px;
		border-radius: 15px;
		margin: 5px;
		padding: 3px;
		box-shadow: 0 0 0 5px transparent;
		cursor: pointer;
		transition: .3s;
	}

	.item-leak:hover {
		box-shadow: 0 0 0 2px white;
	}

	.item-leak-hover {
		display: none;
	}

	.item-leak-athena {
		border-radius: 15px;
		overflow: hidden;
		width: auto;
		display: flex;
		margin: auto;
	}

	.athena-img {
		width: 100%;
		height: 100%;
	}

	.athena-img img {
		width: 100%;
		display: flex;
		margin: auto;
	}

	.athena-infos {
		position: absolute;
		left: 5px;
		right: 5px;
		bottom: 5px;
	}

	.athena-title {
		width: 100%;
		display: flex;
		margin: auto;
	}

	.athena-title p {
		font-size: 10px;
		margin-left: 5px;
		text-align: left;
		font-family: var(--fontFamilyItemTitle);
		text-transform: uppercase;
		transition: .3s;
	}

	.item-leak:hover .athena-title p {
		transform: translateY(-5px);
	}

	/* NEWS */
	.output {
		display: flex;
		flex-flow: row wrap;
		margin-top: 10px;
		color: white;
		margin-bottom: 20px;
	}

	.container-title {
		text-align: center;
		font-size: 30px;
		text-decoration: underline;
	}

	.news-card {
		width: 180px;
		height: 100%;
		margin: auto;
		position: relative;
		overflow: hidden;
		padding: 5px;
		box-sizing: border-box;
		border-radius: 18px;
		box-shadow: 0 0 0 5px rgba(255, 255, 255, 0);
		cursor: pointer;
		user-select: none;
		transition: .3s;
	}

	.news-image {
		width: 100%;
		display: flex;
		margin: auto;
		overflow: hidden;
		border-radius: 15px;
	}

	.news-header-infos {
		position: absolute;
		z-index: 2;
		width: 95%;
		display: flex;
		flex-flow: row wrap;
		margin: 0 auto;
		overflow: hidden;
		left: 5px;
		bottom: 0;
		transition: .3s;
	}

	.news-title {
		text-align: left;
		text-transform: uppercase;
		font-family: 'Oswald';
		font-size: 13px;
		line-height: 1.2;
		margin-left: 3px;
		width: 100%;
		transition: .3s;
	}

	.news-description {
		text-align: left;
		text-shadow: 1px 0 0 black, 0 1px 0 black, -1px 0 0 black, 0 -1px 0 black;
		font-size: 9px;
		font-family: var(--fontFamilyItemTitle);
		line-height: 1.2;
		margin-left: 3px;
		width: 100%;
		transition: .3s;
		display: none;
	}

	/* NEWS DETAILS */

	.newsDetails {
		position: fixed;
		z-index: 5;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100vh;
		/* display: flex; */
		display: none;
		margin: auto;
		background-color: #050a14;
	}

	.newsDetailsContainer {
		width: 100%;
		height: 100%;
		display: inline-flex;
		justify-content: right;
		flex-flow: row wrap;
		margin: auto;
	}

	.more-news-action {
		margin: 20px 10px auto;
	}

	.more-news-action p {
		margin: auto;
		color: white;
		padding: 5px 20px;
	}

	.newsDetailsContent {
		margin-top: 10px;
		width: 100%;
		height: 100%;
		display: block;
		overflow: hidden;
	}

	.newsDetailsTile {
		display: flex;
		margin: 10px auto;
		width: 95%;
		border-radius: 15px;
		box-shadow: 0 0 0 2px white;
	}

	.newsDetailsHeader {
		width: 95%;
		margin: 10px auto;
	}

	.newsDetailsTitle {
		text-align: left;
		font-size: 20px;
		text-transform: uppercase;
		font-weight: bold;
	}

	.newsDetailsDescription {
		text-align: left;
		font-size: 15px;
	}

	/* BLOG */
	.output-blog {
		display: flex;
		flex-flow: row wrap;
		margin-top: 10px;
		color: white;
		margin-bottom: 20px;
	}

	.blog-card {
		display: flex;
		width: 180px;
		height: 300px;
		margin: 5px;
		padding: 5px;
		border-radius: 15px;
		box-shadow: 0 0 0 12px transparent;
		transition: .2s;
		overflow: hidden;
		cursor: pointer;
	}

	.blog-card:hover {
		box-shadow: 0 0 0 4px white;
	}

	.blog-card a {
		width: 100%;
	}

	.blog-card-container {
		display: block;
		background-color: #3a3c4270;
		height: 100%;
		border-radius: 15px;
		overflow: hidden;
	}

	.blog-card-img {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.blog-card-img-img {
		width: 100%;
	}

	.blog-card-header {
		width: 100%;
		display: flex;
		flex-flow: row wrap;
	}

	.blog-card-header-date {
		width: 100%;
		text-align: left;
		margin: 5px 10px 0 10px;
		font-size: 11px;
		color: var(--playerColorTitleValue);
	}

	.blog-card-header-title {
		width: 100%;
		font-size: 13px;
		text-align: left;
		margin: 5px 10px auto 10px;
		text-transform: uppercase;
		font-family: 'Oswald';
	}

	/* BOUTIQUE */
	.content-shop {
		width: 95%;
		overflow: hidden;
		border-radius: 15px;
		display: flex;
		margin: 10px auto;
	}

	.content-shop a {
		width: 100%;
		height: 100%;
		display: flex;
		margin: auto;
		justify-content: center;
	}

	.content-shop img {
		width: 100%;
		display: flex;
		margin: auto;
	}
}

@media only screen and (min-width : 1220px) {

	.container-leak,
	.container-news,
	.container-blog,
	.container-shop {
		display: flex;
		margin: 50px auto;
		padding: 20px;
		width: 60%;
		background-color: var(--homeLeakBackground);
		box-shadow: 0 0 0 2px #222222;
		border-radius: 15px;
	}

	.leak,
	.news,
	.blog,
	.shop {
		display: block;
		width: 100%;
	}

	.header-leak,
	.header-news,
	.header-blog,
	.header-shop {
		margin: 0 10px;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.header-leak {
		padding: 0 15px;
	}

	.head-leak,
	.head-news,
	.head-blog,
	.head-shop {
		width: 100%;
	}

	.title-leak,
	.title-news,
	.title-blog,
	.title-shop {
		text-align: left;
		text-transform: uppercase;
		font-size: 25px;
		font-family: 'Oswald';
	}

	.description-leak,
	.description-news,
	.description-blog,
	.description-shop {
		text-align: left;
		font-size: 14px;
	}

	.content-leak,
	.content-news,
	.content-blog,
	.content-shop {
		width: 100%;
	}

	.more-leak {
		width: 100%;
		display: flex;
		justify-content: right;
	}

	.more-leak-action {
		width: auto;
		height: 30px;
		cursor: pointer;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.more-leak-action p {
		margin: auto;
		font-size: 13px;
		padding: 0 10px;
	}

	.athena-leak {
		display: grid;
		grid-template-columns: repeat(8, 1fr);
		gap: 10px;
		overflow: hidden;
		width: 100%;
		height: auto;
		padding: 15px;
	}

	.item-leak {
		position: relative;
		overflow: hidden;
		width: auto;
		min-width: 120px;
		max-width: 160px;
		height: auto;
		min-height: 120px;
		max-height: 160px;
		border-radius: 18px;
		margin: auto;
		padding: 4px;
		box-shadow: 0 0 0 12px transparent;
		cursor: pointer;
		transition: .2s;
	}

	.item-leak:hover {
		box-shadow: 0 0 0 4px white;
	}

	.item-leak-hover {
		display: flex;
		z-index: 0;
		position: absolute;
		margin: 4px;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}

	.item-leak:hover .item-leak-hover {
		z-index: 0;
		position: absolute;
		margin: 4px;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background-color: rgba(0, 0, 0, 0.5);
	}

	.item-leak-athena {
		border-radius: 15px;
		overflow: hidden;
		width: auto;
		display: flex;
		margin: auto;
	}

	.athena-img {
		width: 100%;
		height: 100%;
	}

	.athena-img img {
		width: 100%;
		display: flex;
		margin: auto;
	}

	.athena-infos {
		position: absolute;
		left: 4px;
		right: 4px;
		bottom: 0;
	}

	.athena-title p {
		margin: 10px;
		font-family: var(--fontFamilyItemTitle);
		font-display: swap;
		font-size: 13px;
		text-align: left;
		text-transform: uppercase;
	}

	/* NEWS */

	.container-title {
		text-align: center;
		font-size: 35px;
		text-decoration: underline;
		margin-bottom: 50px;
	}

	.output {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
		gap: 15px;
		margin-top: 10px;
		color: white;
		margin-bottom: 20px;
	}

	.news-card {
		position: relative;
		overflow: hidden;
		width: 350px;
		margin: auto;
		padding: 5px;
		box-sizing: border-box;
		border-radius: 25px;
		box-shadow: 0 0 0 12px transparent;
		cursor: pointer;
		user-select: none;
		transition: .2s;
	}

	.news-card:hover {
		box-shadow: 0 0 0 4px rgb(255, 255, 255);
	}

	.news-image {
		width: 100%;
		display: flex;
		margin: auto;
		overflow: hidden;
		border-radius: 20px;
	}

	.news-header-infos {
		position: absolute;
		z-index: 2;
		display: flex;
		flex-flow: row wrap;
		overflow: hidden;
		min-height: 100px;
		left: 5px;
		right: 5px;
		bottom: 5px;
		border-radius: 0 0 15px 15px;
		transition: .3s;
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgb(0 0 0 / 0%) 100%);
	}

	.news-title {
		width: 100%;
		margin: auto auto 15px 15px;
		line-height: 1.2;
		text-align: left;
		text-transform: uppercase;
		font-family: var(--fontFamilyItemTitle);
		font-size: 15px;
		font-style: italic;
		transition: .3s;
	}

	.news-description {
		width: 100%;
		display: none;
		margin-left: 3px;
		line-height: 1.2;
		text-align: left;
		font-family: var(--fontFamilyItemTitle);
		font-size: 10px;
		transition: .3s;
	}

	.news-card:hover .news-title,
	.news-card:hover .news-description {
		transform: translateY(-5px);
	}

	/* NEWS DETAILS */

	.newsDetails {
		position: fixed;
		z-index: 5;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100vh;
		display: none;
		margin: auto;
		background-color: #050a14;
	}

	.newsDetailsContainer {
		width: 70%;
		display: inline-flex;
		justify-content: right;
		flex-flow: row wrap;
		margin: auto;
	}

	.more-news-action {
		display: flex;
		margin: 10px;
		width: auto;
		height: auto;
	}

	.more-news-action p {
		display: flex;
		margin: auto;
		padding: 5px 20px;
	}

	.newsDetailsContent {
		margin-top: 10px;
		width: 100%;
		display: block;
		overflow: hidden;
		position: relative;
		border-radius: 15px;
	}

	.newsDetailsTile {
		display: flex;
		margin: auto;
		width: 100%;
	}

	.newsDetailsHeader {
		position: absolute;
		z-index: 6;
		width: 100%;
		max-height: 50%;
		bottom: 0;
		left: 0;
		right: 0;
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
		overflow: auto;
	}

	.newsDetailsTitle {
		text-align: left;
		font-size: 25px;
		width: 70%;
		margin: 15px 0 15px 50px;
		font-family: var(--fontFamilyItemTitle);
		font-style: italic;
	}

	.newsDetailsDescription {
		text-align: left;
		font-size: 17px;
		margin: 0 15px 50px 50px;
		width: 70%;
		font-family: 'Oswald';
	}

	/* BLOG */

	.output-blog {
		display: flex;
		flex-flow: row wrap;
		margin-top: 10px;
		color: white;
		margin-bottom: 20px;
	}

	.blog-card {
		display: flex;
		width: 300px;
		height: 400px;
		margin: 5px;
		padding: 5px;
		border-radius: 15px;
		box-shadow: 0 0 0 12px transparent;
		transition: .2s;
		overflow: hidden;
		cursor: pointer;
	}

	.blog-card:hover {
		box-shadow: 0 0 0 4px white;
	}

	.blog-card a {
		width: 100%;
	}

	.blog-card-container {
		display: block;
		background-color: #3a3c4270;
		height: 100%;
		border-radius: 15px;
		overflow: hidden;
	}

	.blog-card-img {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.blog-card-img-img {
		width: 100%;
	}

	.blog-card-header {
		width: 100%;
		display: flex;
		flex-flow: row wrap;
	}

	.blog-card-header-date {
		width: 100%;
		text-align: left;
		margin: 5px 10px;
		font-size: 13px;
		color: var(--playerColorTitleValue);
	}

	.blog-card-header-title {
		width: 100%;
		font-size: 15px;
		text-align: left;
		margin: 5px 10px auto 10px;
		text-transform: uppercase;
		font-family: 'Oswald';
	}

	/* BOUTIQUE */

	.content-shop {
		width: 100%;
		height: auto;
		background-color: #1b1e3d;
		border-radius: 15px;
		position: relative;
		overflow: hidden;
	}

	.content-shop a {
		width: 100%;
		height: 100%;
		display: flex;
		margin: auto;
		justify-content: center;
	}

	.content-shop img {
		width: 100%;
		display: flex;
		margin: auto;
	}
}