@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
	--main-color: #fd9901;
	--dark-color: #1a1a1a;
	--light-color: #f5f5f5;
	--hover-color: #fd9901;
	--text-color: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

body {
	background-color: var(--dark-color);
	color: var(--text-color);
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.main-content {
	flex-grow: 1;
}

.container {
	width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding: 0 .9375rem
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
	40% { transform: translateY(-20px) translateX(-50%); }
	60% { transform: translateY(-10px) translateX(-50%); }
}

header {
	background: linear-gradient(to right, #000000, #1a1a1a);
	padding: 15px 0;
	position: fixed;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 28px;
	font-weight: 700;
	color: var(--main-color);
	text-transform: uppercase;
	letter-spacing: 2px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.logo:hover {
	color: var(--main-color);
	transform: scale(1.05);
}

.logo img {
	height: 4vh;
}

.logo span {
	color: var(--text-color);
}

.account-btn {
	background-color: var(--main-color);
	color: var(--dark-color);
	border: none;
	padding: 8px 20px;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.account-btn:hover {
	background-color: var(--hover-color);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

nav.desktop-nav ul {
	display: flex;
	list-style: none;
}

nav.desktop-nav ul li {
	margin-left: 30px;
	position: relative;
}

nav.desktop-nav ul li a {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	padding: 5px 0;
}

nav.desktop-nav ul li a:hover,
nav.desktop-nav ul li a.active {
	color: var(--main-color);
}

nav.desktop-nav ul li a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--main-color);
	bottom: 0;
	left: 0;
	transition: width 0.3s ease;
}

nav.desktop-nav ul li a:hover::after,
nav.desktop-nav ul li a.active::after {
	width: 100%;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--text-color);
	font-size: 24px;
	cursor: pointer;
	padding: 5px;
}

.mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 70%;
	height: 100vh;
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1001;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	padding: 80px 20px 20px;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
	transform: translateX(0);
}

.mobile-nav ul {
	list-style: none;
}

.mobile-nav ul li {
	margin-bottom: 20px;
}

.mobile-nav ul li a {
	color: var(--text-color);
	text-decoration: none;
	font-size: 18px;
	display: block;
	padding: 10px;
	border-radius: 5px;
	transition: all 0.3s ease;
	position: relative;
}

.mobile-nav ul li a:hover {
	background: rgba(255, 107, 0, 0.2);
	color: var(--main-color);
}

.mobile-nav ul li a.active {
	color: var(--text-color);
	background: rgba(255, 107, 0, 0.2);
}

.mobile-nav ul li a.active::after {
	content: '';
	position: absolute;
	width: 4px;
	height: 100%;
	background: var(--main-color);
	left: 0;
	top: 0;
}

.close-mobile-menu {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 24px;
	background: none;
	border: none;
	color: var(--text-color);
	cursor: pointer;
}

.hero {
	height: 100vh;
	background: url('img/background.png') no-repeat center center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	padding-top: 80px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	padding: 0 20px;
}

.hero h1 {
	font-size: 36px;
	margin-bottom: 20px;
	text-transform: uppercase;
	animation: fadeIn 1s ease;
}

.hero h1 span {
	color: var(--main-color);
}

.hero p {
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 1.6;
	animation: fadeIn 1s ease 0.3s both;
}

.play-btn {
	background-color: var(--main-color);
	color: var(--dark-color);
	border: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	animation: fadeIn 1s ease 0.9s both;
	margin-bottom: 30px;
}

.play-btn:hover {
	background-color: var(--hover-color);
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 10px 25px rgba(255, 107, 0, 0.5);
}

.stats-container {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 30px;
	animation: fadeIn 1s ease 0.6s both;
}

.stat-item {
	background: rgba(255, 107, 0, 0.2);
	padding: 8px 15px;
	border-radius: 8px;
	border: 1px solid var(--main-color);
	min-width: 120px;
}

.stat-item .stat-value {
	color: var(--main-color);
	font-weight: 700;
	font-size: 18px;
	display: block;
	margin-bottom: 5px;
}

.stat-item .stat-label {
	font-size: 12px;
	opacity: 0.8;
}

.scroll-down {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--text-color);
	font-size: 24px;
	animation: bounce 2s infinite;
	cursor: pointer;
	z-index: 1;
}

.download-section {
	padding: 80px 20px;
	background: linear-gradient(to bottom, #1a1a1a, #000000);
	text-align: center;
}

.section-title {
	font-size: 28px;
	margin-bottom: 40px;
	position: relative;
	display: inline-block;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
	color: #ffffff;
}

.section-title.animated {
	opacity: 1;
	transform: translateY(0);
}

.section-title::after {
	content: '';
	position: absolute;
	width: 50%;
	height: 3px;
	background: var(--main-color);
	bottom: -10px;
	left: 25%;
}

.download-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.download-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 20px;
	width: 100%;
	max-width: 300px;
	transition: all 0.5s ease;
	opacity: 0;
	transform: translateY(30px);
}

.download-card.animated {
	opacity: 1;
	transform: translateY(0);
}

.download-card:nth-child(1) { transition-delay: 0.2s; }
.download-card:nth-child(2) { transition-delay: 0.4s; }
.download-card:nth-child(3) { transition-delay: 0.6s; }

.download-card:hover {
	background: rgba(255, 107, 0, 0.1);
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.download-icon {
	font-size: 40px;
	color: var(--main-color);
	margin-bottom: 15px;
}

.download-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.download-card p {
	color: #cccccc;
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 14px;
}

.download-btn {
	background-color: var(--main-color);
	color: var(--dark-color);
	border: none;
	padding: 10px 25px;
	border-radius: 30px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
	font-size: 14px;
}

.download-btn:hover {
	background-color: var(--hover-color);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.social-section {
	padding: 60px 20px;
	background-color: #000000;
	text-align: center;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.social-link-2 {
	color: var(--text-color);
}

.social-link {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-color);
	font-size: 24px;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
}

.social-link.animated {
	opacity: 1;
	transform: translateY(0);
}

.social-link:nth-child(1) { transition-delay: 0.1s; }
.social-link:nth-child(2) { transition-delay: 0.2s; }

.social-link:hover {
	background: var(--main-color);
	color: var(--dark-color);
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.forbes-section {
	padding-bottom: 6rem;
}

.forbes-title {
	color: #ffffff;
	font-size: 3.5rem;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 1rem;
	padding-top: 100px;
}

.forbes-subtitle {
	color: #e0e6f0;
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 3rem;
	font-weight: 300;
}

.forbes__top {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 1rem;
	margin-bottom: 4rem;
	flex-wrap: wrap;
}

.top-item {
	text-align: center;
	color: #fff;
	width: 280px;
}

.top-item--gold {
	order: 2;
	transform: scale(1.15);
	margin-bottom: 2rem;
}

.top-item--silver {
	order: 1;
}

.top-item--bronze {
	order: 3;
}

.top-item__position {
	font-size: 2.5rem;
	font-weight: 200;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
}

.top-item--gold .top-item__position {
	background-image: linear-gradient(208deg, #fccc01, #ff3500);
}

.top-item--silver .top-item__position {
	background-image: linear-gradient(208deg, #d4daef, #9aa7d7);
}

.top-item--bronze .top-item__position {
	background-image: linear-gradient(208deg, #b17040, #8a420e);
}

.top-item__figure {
	position: relative;
	padding: 0;
	margin-top: 1rem;
}

.top-item__rect {
	width: 100%;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.top-item__skin {
	max-width: 100%;
	max-height: 240px;
	object-fit: contain;
	filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4));
}

.top-item__nickname {
	font-size: 1.25rem;
	font-weight: 700;
	margin-top: 1rem;
}

.top-item__balance {
	color: rgba(255, 255, 255, 0.7);
	font-weight: 300;
	margin-top: 0.5rem;
}

.forbes-table-container {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 1rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.forbes-table {
	width: 100%;
	border-collapse: collapse;
	color: #e0e6f0;
}

.forbes-table th, .forbes-table td {
	padding: 1rem 1.5rem;
	text-align: center;
	vertical-align: middle;
}

.forbes-table tbody tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.forbes-table tbody tr:last-child {
	border-bottom: none;
}

.forbes-table tbody tr:hover {
	background-color: rgba(0, 85, 255, 0.1);
}

.loader-cell, .error-cell {
	text-align: center;
	padding: 3rem;
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.5);
}

.error-cell {
	color: #ea4f3d;
}

.shop-page {
	position: relative;
	padding-top: 100px;
}

.shop-admin {
	margin-top: 0px;
	text-align: center;
}

.shop-admin .section-title {
	opacity: 1;
	transform: translateY(0);
}

.shop-admin__card {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4rem;
	position: relative;
}

.shop-admin__container {
	height: 16rem;
	width: 16rem;
	overflow: hidden;
	position: relative;
	align-content: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	border: 1px solid rgba(255, 107, 0, 0.3);
}

.shop-admin__name {
	width: 100%;
	margin-top: 20px;
	display: block;
	text-align: center;
	color: #fff;
	font-size: 26px;
	font-weight: 800;
}

.shop-admin__price {
	width: 100%;
	text-align: center;
	margin-bottom: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: #65c466;
}

.shop-admin__button {
	background-color: #fd9901;
	max-width: 100%;
	width: 220px;
	height: 48px;
	text-align: center;
	align-content: center;
	line-height: 36px;
	color: #1a1a1a;
	font-size: 1.5rem;
	margin: 40px auto 15px;
	font-weight: 700;
	display: block;
	border-radius: 5px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.shop-admin__button:hover {
	background: #fd9901;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(30,29,29,.24);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 4999;
	justify-content: center;
	align-items: center;
}

.check__wrapper {
	width: 24.5625rem;
	background-color: #1e1d1d;
	min-height: 18.75rem;
	max-height: 48rem;
	position: relative;
	margin-bottom: 0.5625rem;
	border-radius: 12px;
	padding: 2.5625rem 2rem 4rem;
}

.modal-close-button {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	position: absolute;
	top: 1rem;
	right: 1rem;
	background-color: #f8f8f8;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	cursor: pointer;
}

.modal-close-button > svg {
	width: .5rem;
	height: .5rem;
}

.check__logo {
	width: 4rem;
	height: 4rem;
	margin: 0 auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: linear-gradient(208.78deg, rgba(253, 153, 1, 0.15) -1.13%, rgba(151, 91, 0, 0.15) 95.96%)
}

.check__logo > img {
	width: 3.75rem
}

.type-of-product {
	text-align: center;
	font-weight: 700;
	margin-bottom: 2rem;
	margin-top: 1rem;
	font-size: 1.3rem;
	color: #fff;
}

.form__inputs {
	display: grid;
	grid-row-gap: 1rem;
	row-gap: 1rem;
}

.input {
	position: relative;
}

.input__element {
	width: 100%;
	line-height: 1.1875rem;
	padding: 1rem;
	background-color: #f8f8f8;
	border-radius: 5px;
	outline: none;
	border: .0625rem solid transparent;
	font-weight: 600;
	color: #1a1a1a;
}

.input__element:focus {
	background-color: #fff;
	border-color: rgba(30, 29, 29, .1);
}

.input__element:focus + .input__icon {
	stroke-opacity: 1;
}

.input__element::placeholder {
	font-weight: 400;
}

.input__icon {
	position: absolute;
	right: 1rem;
	top: 1.25rem;
	max-width: .75rem;
	max-height: .75rem;
}

.form__buttons {
	margin-top: 2rem;
	text-align: center;
}

.submit-button {
	line-height: 3.25rem;
	border-radius: 5px;
	background: #fd9901;
	width: 100%;
	color: #1a1a1a;
	font-size: 1.5rem;
	font-weight: 700;
	transition: all .3s ease;
	border: none;
	cursor: pointer;
	padding: 0;
	margin: 0;
}

.submit-button:hover {
	background: #fd9901;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.payment-details {
	margin-top: 2rem;
	margin-bottom: 2rem;
	padding: 1.5rem;
	border: 1px solid #444;
	border-radius: 5px;
	background-color: rgba(0, 0, 0, 0.2);
}

.payment-details h4 {
	margin-top: 0;
	margin-bottom: 1rem;
	text-align: center;
	font-weight: 500;
}

.payment-details p {
	text-align: center;
	color: #ccc;
	margin-bottom: 1.5rem;
	line-height: 1.4;
}

.card-info {
	align-items: center;
	text-align: center;
	justify-content: space-between;
}

#card-number {
	font-family: 'Courier New', Courier, monospace;
	font-size: 1.1rem;
	font-weight: bold;
	letter-spacing: 2px;
	color: #fff;
	background-color: #111;
	padding: 0.8rem 1rem;
	border-radius: 5px;
}

#copy-button {
	cursor: pointer;
	background-color: rgba(30, 29, 29, 0.4);
	border: 2px solid rgba(255, 255, 255, 0.15);
	max-width: 100%;
	width: 220px;
	height: 48px;
	text-align: center;
	align-content: center;
	line-height: 36px;
	color: #f3f2ed;
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 2rem;
	transition: all 0.2s ease;
	border-radius: 5px;
}

#copy-button:hover {
	background: #1e1d1d;
	transform: scale(1.03);
	cursor: pointer;
}

footer {
	background: var(--dark-color);
	padding: 30px 0;
	text-align: center;
	font-size: 14px;
	color: rgba(236, 240, 241, 0.6);
}

footer p {
	color: #777777;
	font-size: 12px;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.footer-links a {
	color: rgba(236, 240, 241, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-links a:hover {
	color: var(--main-color);
}

@media (max-width: 992px) {
	nav.desktop-nav, .account-btn {
		display: none;
	}
	
	.mobile-menu-btn {
		display: block;
	}
	
	.hero h1 {
		font-size: 32px;
	}
	
	.hero p {
		font-size: 14px;
	}
	
	.stat-item {
		min-width: 100px;
		padding: 6px 10px;
	}
	
	.stat-item .stat-value {
		font-size: 16px;
	}
	
	.stat-item .stat-label {
		font-size: 10px;
	}

	.top-item--gold {
		order: 1;
		transform: scale(1.1);
		margin-bottom: 0;
	}
	.top-item--silver {
		order: 2;
	}
	.top-item--bronze {
		order: 3;
	}
	.forbes__top {
		align-items: center;
	}
}

@media (max-width: 80rem) {
	.container {
		width: 64rem
	}
}

@media (max-width: 768px) {
	.forbes-title {
		font-size: 2.5rem;
	}
	.forbes-subtitle {
		font-size: 1rem;
	}
	.forbes-table td {
		padding: 0.8rem 1rem;
	}
}

@media (max-width: 640px) {
	.shop-admin__container {
		height: 12rem;
		width: 12rem;
	}
	.shop-admin__name {
		font-size: 18px;
	}
	.shop-admin__price {
		font-size: 1.8rem;
	}
	.shop-admin__button {
		width: 180px;
		height: 42px;
	}
}

@media (max-width:64rem) {
	.container {
		width: 100%;
		padding: 0 20px;
	}
}

@media (max-width: 576px) {
	.logo {
		font-size: 24px;
	}
	.hero h1 {
		font-size: 28px;
	}
	.play-btn {
		padding: 10px 25px;
		font-size: 14px;
	}
	.stats-container {
		gap: 10px;
	}
	.stat-item {
		min-width: 80px;
		padding: 5px 8px;
	}
	.stat-item .stat-value {
		font-size: 14px;
	}
	.stat-item .stat-label {
		font-size: 9px;
	}
	.section-title {
		font-size: 24px;
	}
	.download-card {
		padding: 15px;
	}
	.download-icon {
		font-size: 35px;
	}
	.download-card h3 {
		font-size: 18px;
	}
	.download-card p {
		font-size: 13px;
	}
	.download-btn {
		padding: 8px 20px;
		font-size: 13px;
	}
	.social-link {
		width: 45px;
		height: 45px;
		font-size: 20px;
	}
}

@media(max-width:36rem) {
	.container {
		width: 95%
	}
}


