* {
	box-sizing: border-box;
	font-family: 'Ubuntu', sans-serif;
}

:root {
	--primary-orange: #FF8C00;
	--secondary-orange: #FF4500;
	--white: #FFFFFF;
	--light-gray: #F4F4F4;
	--dark-gray: #333333;
	--text-color: #444444;
}

body {
	background-color: var(--white);
	color: var(--text-color);
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
	color: var(--secondary-orange);
	font-weight: 700;
	text-transform: uppercase;
}

.button {
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none !important;
	transition: none;
}

.primary-btn {
	background: linear-gradient(45deg, var(--secondary-orange), var(--primary-orange));
	color: white;
	border: none;
}

.primary-btn:hover {
	background: var(--secondary-orange);
}

.secondary-btn {
	background: transparent;
	border: 2px solid var(--primary-orange);
	color: var(--primary-orange);
}

.secondary-btn:hover {
	background: var(--primary-orange);
	color: white;
}

/* Header */
.site-header {
	background: var(--white);
	padding: 1rem 0;
	border-bottom: 3px solid var(--primary-orange);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-logo {
	display: flex;
	align-items: center;
	text-decoration: none !important;
}

.site-logo img {
	height: 50px;
	margin-right: 10px;
}

.site-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--secondary-orange);
}

.burger-menu {
	display: none;
	background: none;
	border: none;
	font-size: 2rem;
	color: var(--primary-orange);
	cursor: pointer;
}

/* Hero */
.hero-section {
	padding: 4rem 0;
	background: radial-gradient(circle, #fff 0%, #fff7ed 100%);
}

.hero-title {
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
}

.hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.hero-main-img {
	border: 5px solid var(--primary-orange);
	border-radius: 20px;
	max-width: 100%;
}

/* Iframe Section */
.game-iframe-section {
	padding: 2rem 0;
	background: #000;
}

.iframe-wrapper {
	position: relative;
	width: 100%;
	height: 700px;
	background: #222;
}

#game-iframe {
	width: 100%;
	height: 100%;
}

.iframe-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	text-align: center;
	color: white;
}

.overlay-content h2 {
	color: var(--primary-orange);
}

/* About */
.about-section {
	padding: 4rem 0;
}

.section-title {
	font-size: 2rem;
	margin-bottom: 2rem;
	position: relative;
	padding-bottom: 10px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--primary-orange);
}

/* Details Cards */
.detail-card {
	background: var(--light-gray);
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	margin-bottom: 1rem;
	height: 100%;
	border-bottom: 5px solid var(--primary-orange);
}

.detail-card i {
	font-size: 3rem;
	color: var(--secondary-orange);
}

/* Bonuses */
.bonus-item {
	padding: 1.5rem;
	background: white;
	border: 1px solid #eee;
	margin-bottom: 1rem;
	height: 100%;
}

.bonus-item i {
	font-size: 2.5rem;
	color: var(--primary-orange);
}

/* Stats */
.stats-section .callout {
	background: var(--secondary-orange);
	color: white;
	border: none;
	padding: 2rem;
}

.stats-section .callout strong {
	font-size: 2.5rem;
	display: block;
}

.stats-section .callout i {
	font-size: 2rem;
}

/* Characters */
.character-card {
	background: var(--light-gray);
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 2rem;
	height: calc(100% - 2rem);
}

.character-card img {
	width: 100%;
	height: 350px;
	object-fit: cover;
}

/* Locations */
.location-card {
	position: relative;
	margin-bottom: 2rem;
	overflow: hidden;
	border-radius: 15px;
}

.location-card img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.location-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	background: linear-gradient(transparent, rgba(0,0,0,0.9));
	color: white;
}

.location-info h4 {
	color: var(--primary-orange);
}

/* Reviews */
.review-card {
	background: #fff;
	border: 1px solid #ddd;
	padding: 1.5rem;
	margin-bottom: 1rem;
	position: relative;
}

.review-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.author {
	font-weight: 700;
	color: var(--secondary-orange);
}

.report-btn {
	position: absolute;
	right: 10px;
	bottom: 10px;
	background: none;
	border: none;
	color: #ccc;
	cursor: pointer;
}

.review-form-container {
	background: var(--light-gray);
	padding: 2rem;
	border-radius: 15px;
	margin-top: 3rem;
}

/* Footer */
.site-footer {
	background: #222;
	color: #eee;
	padding: 4rem 0 2rem;
}

.footer-logo img {
	height: 40px;
	margin-right: 10px;
}

.footer-logo span {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-orange);
}

.platform-links {
	list-style: none;
	margin: 0;
}

.platform-links li {
	margin-bottom: 0.5rem;
}

.email-link {
	color: var(--primary-orange);
	word-break: break-all;
	text-decoration: none !important;
}

.legal-links a {
	color: #999;
	margin: 0 10px;
	text-decoration: none !important;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	background: rgba(0,0,0,0.7);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.cookie-content {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	max-width: 500px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
}

.cookie-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 1.5rem;
}

.cookie-settings-panel {
	margin: 1rem 0;
	padding: 1rem;
	background: #f9f9f9;
	border-radius: 10px;
}

.adapt{
	
	padding-bottom: 20px;
}

/* Mobile Responsive */
@media screen and (max-width: 1024px) {
	.hero-title {
		font-size: 1.8rem;
	}
	.site-name {
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 768px) {
	.burger-menu {
		display: block;
	}
	.main-nav {
		display: none;
		width: 100%;
		position: absolute;
		top: 100%;
		left: 0;
		background: white;
		border-bottom: 2px solid var(--primary-orange);
	}
	.main-nav.active {
		display: block;
	}
	.hero-title {
		font-size: 1.5rem;
	}
	.hero-section {
		min-height: 30vh;
		padding: 2rem 0;
	}
	.iframe-wrapper {
		height: 400px;
	}
	.site-name {
		font-size: 1rem;
	}

	.game-iframe-section{
		height: auto;
		padding: 100px 0;
	}
}

@media screen and (max-width: 640px) {
	.hero-title {
		font-size: 1.2rem;
	}
	.section-title {
		font-size: 1.4rem;
		text-align: center !important;
	}

	.img__adapt{
		display: block;
		width: 80%;
		margin: 0 auto;
		height: auto;
	}
}/* Parent container spacing */
.userClauseNet {
    padding-top: 25px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.6;
    color: #333;
}

/* Paragraph styles */
.userClauseNet p {
    font-size: 16px;
    margin-bottom: 16px;
    margin-top: 0;
}

/* Conservative heading styles */
.userClauseNet h1 {
    font-size: 24px;
    margin-bottom: 18px;
    margin-top: 24px;
    font-weight: 700;
}

.userClauseNet h2 {
    font-size: 20px;
    margin-bottom: 16px;
    margin-top: 22px;
    font-weight: 700;
}

.userClauseNet h3 {
    font-size: 18px;
    margin-bottom: 14px;
    margin-top: 20px;
    font-weight: 600;
}

.userClauseNet h4 {
    font-size: 16px;
    margin-bottom: 12px;
    margin-top: 18px;
    font-weight: 600;
}

.userClauseNet h5 {
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* List styles */
.userClauseNet ul {
    margin-bottom: 16px;
    padding-left: 25px;
    list-style-type: disc;
}

.userClauseNet li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Removing top margin from the first element to maintain padding consistency */
.userClauseNet > *:first-child {
    margin-top: 0;
}


.iframe-wrapper {
    position: relative; /* Важно для позиционирования кнопки */
}

.close-game-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100; /* Чтобы быть выше iframe */
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.close-game-btn:hover {
    background: #ff4444; /* Краснеет при наведении */
    transform: scale(1.1);
}

.otstup{
	width: 100%;
	padding: 40px 0px;
}

.copi__right{
	margin-top: 20px;
}

.iframe-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Наложение цвета прямо на картинку */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/content/images/000101.png') no-repeat center;
    background-size: contain;
    padding: 50px 0;
}

@media screen and (max-width: 600px) {
	.gaym__sekzion{
		height: auto !important;
		padding: 0 !important;
	}
}