* {
box-sizing: border-box;
font-family: Roboto, sans-serif;
}
* {
box-sizing: border-box;
margin: 0;
}
a {
text-decoration: none;
color: inherit;
font-weight: bold;
}
body {
max-width: 1300px;
margin: 0 auto;
font-family: Roboto, sans-serif;
font-size: 16px;
background-color: #051729;
color: #ffffff;
padding-top: 120px; /* Увеличено для навигации */
}
.conteiner {
max-width: 1300px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px;
gap: 10px;
}
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: #010f1d;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 10px 0;
z-index: 1000;
text-align: center;
}
.header_conatiner {
display: flex;
gap: 10px;
align-items: center;
justify-content: space-between;
margin-bottom: 90px;
}
.header_logo img {
height: 41px;
width:100%;
object-fit: contain;
}
.header_button {
display: flex;
gap: 20px;
}

/* Навигационное меню */
.navigation {
position: fixed;
top: 75px; /* Под header */
left: 0;
width: 100%;
background: rgba(0, 0, 0, 0.2);
backdrop-filter: blur(10px);
z-index: 999;
padding: 10px 0;
margin-top: 20px;
}
.nav_conteiner {
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}
.nav-link {
color: #ffffff;
padding: 8px 16px;
border-radius: 5px;
transition: all 0.3s ease;
font-size: 14px;
font-weight: 500;
border: 1px solid transparent;
}
.nav-link:hover {
background-color: rgba(255, 255, 255, 0.1);
border-color: #fb6e1d;
}
.nav-link.active {
background-color: #fb6e1d;
border-color: #fb6e1d;
}

@media (max-width: 768px) {
body {
	padding-top: 95px; /* Больше места для мобильной навигации */
}
.header_button {
	gap: 8px;
}
.nav_conteiner {
	gap: 3px;
	padding: 2px;
}
.nav-link {
	font-size: 12px;
	padding: 6px;
}
}

.btn {
border: 1px solid #fb6e1d;
width: 100%;
display: inline-block;
padding: 10px 20px;
background-color: #fb6e1d;
color: #ffffff;
border-radius: 5px;
cursor: pointer;
position: relative;
transition: box-shadow 0.3s ease-in-out;
		text-align: center;
}
@media (max-width: 768px) {
.btn {
		width: 100%;
		text-align: center;
		padding: 10px;
		font-size: 14px;
}
}
@keyframes glow {
0% { box-shadow: 0 0 5px #fb6e1d; }
50% { box-shadow: 0 0 20px #fb6e1d; }
100% { box-shadow: 0 0 5px #fb6e1d; }
}
.glowing {
animation: glow 1.5s infinite alternate;
}

.button_1 {
background-color: #fb6e1d;
}
.button_2 {
background-color: transparent;
}
.button_2:hover {
background-color: #fb6e1d;
}

h1 {
font-size: 50px;
text-align: center;
font-weight: bold;
text-transform: uppercase;
line-height: 1.4;
}
@media (max-width: 768px) {
h1 {
	font-size: 30px;
}
}
h2 {
font-size: 30px;
font-weight: bold;
}
@media (max-width: 768px) {
h2 {
	font-size: 26px;
	margin-top: 10px;
}
}
.main_conteiner {
position: relative;
margin-top: 40px;
}
.main_text {
display: flex;
flex-direction: column;
gap: 20px;
}
main img {
display: flex;
align-items: center;
justify-content: center;
}
.main p {
font-size: 14px;
font-weight: 400;
color: #ffffff;
line-height: 1.4;
}

.photo {
margin: 0 auto;
width: 70%;
height: 80%;
object-fit: cover;
border-radius: 10px;
margin-bottom: 40px;
}
@media (max-width: 768px) {
.photo {
	width: 100%;
	margin-bottom: 20px;
}
}
.main h1 {
margin-bottom: 50px;
}
@media (max-width: 768px) {
.main h1 {
	margin-bottom: 20px;
}
}
.popup {
width: 470px;
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background: #010f1d;
color: #ffffff;
border-radius: 20px;
padding: 20px 25px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
display: flex;
align-items: center;
gap: 20px;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
@media (max-width: 768px) {
.popup {
	width: 95%;
	padding: 6px;
	gap: 10px;
	border-radius: 10px;
}
}
.popup_block {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;	
}
@media (max-width: 768px) {
.popup_block {
	display: flex;
	justify-content: space-around;	
}
}

.popup.show {
opacity: 1;
visibility: visible;
z-index: 9999;
}

.popup-close {
background: none;
border: none;
color: rgba(255, 255, 255, 0.476);
font-size: 20px;
cursor: pointer;
position: absolute;
right: 10px;
top: 6px;
}
@media (max-width: 768px) {
.popup-close {
	font-size: 16px;
	right: 6px;
	top: 3px;
}
}
.block_txt {
width: 40%;
display: flex;
align-items: center;
flex-direction: column;
text-align: center;
}
.block_txt span {
font-size: 35px;
color: #ffffff;
font-weight: 700;
}
@media (max-width: 768px) {
.block_txt span {
	font-size: 24px;
}
}
.block_txt p {
color: #ffffff;
font-size: 18px;
}
@media (max-width: 768px) {
.block_txt p {
	font-size: 14px;
}
}
.block_btn {
text-transform: uppercase;
font-weight: bold;
font-size: 18px;
}
@media (max-width: 768px) {
.block_btn {
	font-size: 14px;
}
}

/* Дополнительные стили для сгенерированного контента */
h3 {
font-size: 30px;
font-weight: 700;
margin-top: 10px;
margin-bottom: 5px;
}

ul, ol {
padding-left: 20px;
margin-bottom: 15px;
}

li {
font-size: 14px;
margin-bottom: 8px;
line-height: 1.4;
}

table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
font-size: 14px;
}

th, td {
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 10px;
text-align: left;
}

th {
background-color: rgba(0, 0, 0, 0.2);
font-weight: bold;
}

/* Main Banner */
		.hero-section {
			background-image: url('img/i.webp');
			background-size: cover;
			background-position: center;
			/* padding: 80px 40px; */
			margin: 20px 0;
			border-radius: 20px;
			position: relative;
			overflow: hidden;
			height: 350px;
		}
		@media (max-width: 767px) {
.hero-section {
	background-image: url('img/mostbet-com-screenshot.avif');
	margin: 0;
}
}


		.hero-content {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 40px;
			align-items: center;
			position: relative;
			z-index: 2;
			display: none;
		}

		.hero-text h1 {
			font-size: 48px;
			font-weight: bold;
			margin-bottom: 20px;
			line-height: 1.2;
			display: none	;
		}

		.hero-text .highlight {
			color: #ff6b35;
			font-size: 64px;
			display: block;
			margin-bottom: 10px;
		}

		.hero-text .bonus-text {
			font-size: 24px;
			margin-bottom: 10px;
		}

		.hero-text .game-info {
			color: #ff6b35;
			font-size: 18px;
			font-weight: 600;
			margin-bottom: 20px;
		}

		.hero-image {
			text-align: center;
		}

		.dog-character {
			width: 200px;
			height: 200px;
			background: radial-gradient(circle, #D2691E, #8B4513);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			margin: 0 auto;
			position: relative;
			animation: float 3s ease-in-out infinite;
		}

		.dog-face {
			width: 120px;
			height: 100px;
			background: #F4A460;
			border-radius: 50%;
			position: relative;
		}

		.dog-ear {
			width: 40px;
			height: 60px;
			background: #8B4513;
			border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
			position: absolute;
			top: -20px;
		}

		.dog-ear.left {
			left: -15px;
			transform: rotate(-30deg);
		}

		.dog-ear.right {
			right: -15px;
			transform: rotate(30deg);
		}

		.dog-eye {
			width: 12px;
			height: 12px;
			background: black;
			border-radius: 50%;
			position: absolute;
			top: 25px;
		}

		.dog-eye.left {
			left: 25px;
		}

		.dog-eye.right {
			right: 25px;
		}

		.dog-nose {
			width: 20px;
			height: 15px;
			background: black;
			border-radius: 50%;
			position: absolute;
			top: 45px;
			left: 50%;
			transform: translateX(-50%);
		}

		.dog-mouth {
			width: 30px;
			height: 20px;
			border: 3px solid #FF69B4;
			border-top: none;
			border-radius: 0 0 50px 50px;
			position: absolute;
			top: 55px;
			left: 50%;
			transform: translateX(-50%);
		}

		@keyframes float {
			0%, 100% { transform: translateY(0px); }
			50% { transform: translateY(-10px); }
		}

		.coins {
			position: absolute;
			width: 40px;
			height: 40px;
			background: radial-gradient(circle, #ffd700, #ffb347);
			border-radius: 50%;
			animation: coinFall 2s linear infinite;
		}

		.coin-1 { top: 10%; left: 10%; animation-delay: 0s; }
		.coin-2 { top: 20%; right: 15%; animation-delay: 0.5s; }
		.coin-3 { bottom: 30%; left: 20%; animation-delay: 1s; }

		@keyframes coinFall {
			0% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
			100% { transform: translateY(10px) rotate(360deg); opacity: 0.7; }
		}

		/* Responsive Design */
		@media (max-width: 768px) {
			.container {
					padding: 0 15px;
			}

			.header-content {
					flex-wrap: nowrap;
					justify-content: space-between;
			}

			.logo {
					font-size: 20px;
			}

			.logo-star {
					width: 28px;
					height: 28px;
					font-size: 16px;
					margin-right: 8px;
			}

			.header-buttons {
					gap: 10px;
			}

			.btn {
					padding: 10px 20px;
					font-size: 12px;
			}

			.mobile-nav-toggle {
					display: flex;
			}

			.navigation {
					/* display: none; */
			}

			.hero-section {
					/* padding: 30px 20px; */
					/* margin: 15px 0; */
					height: 300px;
							margin-top: 50px;
			}

			.hero-content {
					grid-template-columns: 1fr;
					text-align: center;
					gap: 30px;
					display: none;
			}

			.hero-text .highlight {
					font-size: 48px;
			}

			.hero-text .bonus-text {
					font-size: 20px;
			}

			.hero-text .game-info {
					font-size: 16px;
			}

			.dog-character {
					width: 150px;
					height: 150px;
			}

			.dog-face {
					width: 90px;
					height: 75px;
			}

			.action-cards {
					grid-template-columns: 1fr;
					gap: 15px;
					margin: 20px 0;
			}

			.action-card {
					padding: 20px;
			}

			.action-card h3 {
					font-size: 20px;
					line-height: 1.3;
					width: 150px;
			}

			.content-title {
					font-size: 28px;
			}

			.content-subtitle {
					font-size: 20px;
			}

			.seo-content {
					padding: 20px;
					margin: 30px 0;
			}

			.content-text {
					font-size: 14px;
			}

			.popup {
					width: 95%;
					padding: 6px;
					gap: 10px;
					border-radius: 10px;
			}

			.popup_block {
					justify-content: space-around;
			}

			.popup-close {
					font-size: 16px;
					right: 6px;
					top: 3px;
			}
		}

		@media (max-width: 480px) {
			.hero-text .highlight {
					font-size: 40px;
			}

			.hero-text .bonus-text {
					font-size: 18px;
			}

			.action-card {
					padding: 15px;
			}

			.action-card h3 {
					font-size: 14px;
			}

			.content-title {
					font-size: 24px;
			}

			.content-subtitle {
					font-size: 18px;
			}
		}        /* Action Cards */
		.action-cards {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 14px;
			margin: 14px 0;
		}

		.action-card {
			background-size: cover;
			background-position: center;
			padding: 30px;
			border-radius: 15px;
			text-align: left;
			box-shadow: 0 8px 25px rgba(0,0,0,0.3);
			transition: transform 0.3s ease;
			position: relative;
		}

		@media (max-width: 767px) {
	.action-card{
		padding: 14px;
}}


.action-card1 {
position: relative;
}


.btn-secondary {
border: 1px solid #ffffff;
display: inline-block;
padding: 10px 20px;
background-color: #ffffff;
color: #fb6e1d;
border-radius: 5px;
cursor: pointer;
position: relative;
transition: box-shadow 0.3s ease-in-out;
width: 100%;
text-align: center;
}

		.action-card1 {
			background-image: url('img/most1.webp');
		}

@media (max-width: 767px) {
	.action-card2::before {
	content: '';
	position: absolute;
	bottom: 0;
	z-index: 1;
	background: url(../../img/telegram.png) no-repeat;
	background-size: contain;
	width: 63px;
	height: 63px;
	right: 30px;
	top: 35px;
}}

.action-card2 {
background-image: linear-gradient(135deg, #c32c00, #fe4004 )	
		}


		@media (max-width: 767px) {
	.action-card2::before{
		width: 40px;
		height: auto;
}}


@media (max-width: 767px) {
	.action-card1::before {
	content: '';
	position: absolute;
	bottom: 0;
	z-index: 1;
	background: url(/img/android.png) no-repeat;
	background-size: contain;
	width: 63px;
	height: 63px;
	right: 30px;
	top: 35px;
}}

		@media (max-width: 767px) {
	.action-card1::before{
		width: 40px;
		height: auto;
}}

		.action-card > * {
			position: relative;
			z-index: 2;
		}

		.action-card:hover {
			transform: translateY(-5px);
		}

		.action-card h3 {
			/* font-size: 20px; */
			color: #ffffff;
			text-transform: uppercase;
		}

		.action-card .subtitle {
			font-size: 14px;
			opacity: 0.9;
			margin-bottom: 20px;
			text-transform: lowercase;
		}

		@media (max-width: 767px) {
	.main_conteiner{
		margin-top: 0;}}

/* Games Section Styles - Компактная версия */
.games-section {
    margin: 30px 0;
    width: 100%;
}

.games-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Основной контейнер */
.main_conteiner {
    max-width: 1300px !important;
    padding: 15px 20px;
}

.main {
    width: 100% !important;
    max-width: none !important;
	margin-top:26px;
}

/* Компактная сетка карточек игр */
.game-catalog_list {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    align-content: flex-start;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    justify-content: flex-start;
    max-width: 1200px;
    gap: 15px;
}

.game-catalog_list-item {
    box-sizing: border-box;
    position: relative;
    margin: 0;
    flex-shrink: 0;
}

.game-catalog_list-item .gamecard {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Компактные размеры карточек - по 5 в ряд */
@media (min-width: 0px) {
    .game-catalog_list-item {
        width: calc(50% - 7.5px);
        height: 180px;
    }
}

@media (min-width: 480px) {
    .game-catalog_list-item {
        width: calc(33.333% - 10px);
        height: 160px;
    }
}

@media (min-width: 768px) {
    .game-catalog_list-item {
        width: calc(20% - 12px);
        height: 180px;
    }
}

@media (min-width: 1024px) {
    .game-catalog_list-item {
        width: calc(20% - 12px);
        height: 200px;
    }
}

@media (min-width: 1200px) {
    .game-catalog_list-item {
        width: calc(20% - 12px);
        height: 220px;
    }
}

/* Стили карточек */
.gamecard {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: transform .2s ease;
    width: 100%;
    overflow: hidden;
}

.gamecard a {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

/* Изображение карточки */
.gamecard_window {
    border: 1px solid #393a51;
    border-bottom: none;
    flex: 1;
    position: relative;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
}

.gamecard_img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Флаги игр - компактные */
.gamecard .gamecard_flags {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 2;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 4px;
}

.game_flag_favorite,
.game_flag_pre,
.game_flag_supernew {
    display: inline-block;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.6));
    width: 20px;
    height: auto;
}

.game_flag_favorite img,
.game_flag_pre img,
.game_flag_supernew img {
    width: 100%;
    height: auto;
}

.game_flag_pre {
    width: 24px;
}

.game_flag_supernew {
    width: 22px;
}

/* Кнопки при наведении - компактные */
.gamecard_links {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    padding: 10px;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all .2s ease;
    z-index: 3;
    gap: 8px;
}

/* Компактные кнопки как на скриншоте */
.btn_approve_small {
    align-items: center;
    background-color: #62c23c;
    border: none;
    border-radius: 18px;
    box-shadow: 0 2px 0 0 #3c7028;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 10px;
    font-weight: 700;
    height: 26px;
    justify-content: center;
    letter-spacing: 0.3px;
    line-height: 1;
    outline: none;
    padding: 0 18px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.btn_approve_small:hover {
    background-color: #6bc940;
    box-shadow: 0 2px 0 0 #3c7028, 0 0 6px rgba(98, 194, 60, 0.4);
}

.gamecard_demo {
    background-color: #313047;
    border-radius: 18px;
    box-sizing: border-box;
    font-size: 9px;
    font-weight: 600;
    height: 22px;
    padding: 0 16px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

.gamecard_demo:hover {
    background-color: #3a3954;
}

/* Название игры - компактное */
.gamecard_title {
    background-color: #161626;
    border: 1px solid #393a51;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top: none;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    height: 40px;
    overflow: hidden;
    padding: 0 6px;
    text-align: center;
    color: #fff;
    line-height: 1.2;
    flex-shrink: 0;
}

/* Эффекты при наведении - увеличенный масштаб */
@media (min-width: 769px) {
    .gamecard:hover {
        transform: scale(1.12);
        z-index: 10;
    }
    
    .gamecard:hover .gamecard_links {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .main_conteiner {
        padding: 15px 10px;
    }
    
    .game-catalog_list {
        gap: 10px;
        max-width: 100%;
    }
    
    .game-catalog_list-item {
        height: 160px;
    }
    
    .gamecard .gamecard_flags {
        top: 4px;
        left: 4px;
        gap: 3px;
    }
    
    .game_flag_favorite,
    .game_flag_pre,
    .game_flag_supernew {
        width: 16px;
    }
    
    .game_flag_pre {
        width: 18px;
    }
    
    .game_flag_supernew {
        width: 17px;
    }
    
    .gamecard_title {
        font-size: 10px;
        height: 35px;
        padding: 0 4px;
    }
    
    .gamecard_links {
        padding: 8px;
        gap: 6px;
        bottom: 0;
    }
    
    .btn_approve_small {
        height: 24px;
        font-size: 9px;
        padding: 0 16px;
        border-radius: 16px;
    }
    
    .gamecard_demo {
        height: 20px;
        font-size: 8px;
        padding: 0 14px;
        border-radius: 16px;
    }
    
    /* Мобильные эффекты при клике */
    .gamecard.mobile-active {
        transform: scale(1.13);
        z-index: 20;
        transition: transform 0.3s ease;
    }
    
    .gamecard.mobile-active .gamecard_links {
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Overlay для закрытия активной карточки */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 15;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .game-catalog_list-item {
        height: 140px;
    }
    
    .gamecard_title {
        font-size: 9px;
        height: 32px;
    }
    
    .gamecard_links {
        bottom: 0;
    }
}
