* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-style: normal;
	background: #fff;
}

img,
picture,
svg {
	display: block;
	max-width: 100%;
}

button,
input,
select,
textarea {
	font: inherit;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

button {
	display: block;
	cursor: pointer;
	padding: 0;
}

.container {
	margin: 0 auto;
	width: 100%;
	max-width: 1920px;
	padding: 0 16px;
}

@media (min-width: 768px) {
	.container {
		padding: 0 30px;
	}
}

@media (min-width: 1440px) {
	.container {
		padding: 0 100px;
	}
}

@media (min-width: 1920px) {
	.container {
		padding: 0 240px;
	}
}

/* Основний хедер */
.header {
	padding: 12px 0;
}

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

.header__logo {
	color: #0c0c0c;

	font-size: 20px;

	font-weight: 700;
	line-height: normal;
}

.header__nav {
	display: flex;
	align-items: center;
	gap: 60px;
}

.header__menu {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
}

.header__menu a {
	text-decoration: none;
	color: #0c0c0c;

	font-size: 16px;

	line-height: normal;
}

.header__auth {
	display: flex;
	align-items: center;
	gap: 16px;
}

.btn {
	padding: 12px 24px;

	font-size: 16px;

	font-weight: 700;
	line-height: normal;
	border-radius: 20px;
	cursor: pointer;
	text-align: center;
}

.btn--primary {
	background-color: #6a62e2;
	color: #fff;
	border: none;
	transition: all 0.5s ease-in-out;
}

.btn--primary:hover {
	background-color: #4037bf;
}

.btn--outline {
	background: transparent;

	border: 1px solid #6a62e2 !important;
	color: #6a62e2;
	transition: all 0.5s ease-in-out;
}

.btn--outline:hover {
	background-color: #e0deff;
}

/* Burger button */
.header__burger {
	display: none;

	cursor: pointer;
	background: none;
	border: none;
}

.header__burger img {
	width: 36px;
	height: 36px;
}

/* Mobile menu styles */
.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 375px;
	height: 100%;
	background: #fff;

	transform: translateX(100%);
	transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
	transform: translateX(0);
}

.mobile-menu__close {
	cursor: pointer;
	background: none;
	border: none;
}

.mobile-menu__close img {
	width: 36px;
	height: 36px;
}

.mobile-menu__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;

	margin-bottom: 40px;
}

.mobile-menu__links {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
	list-style: none;
	padding: 0;

	margin-bottom: 60px;
}

.mobile-menu__auth {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 0 16px;
}

.mobile-menu__auth button {
	padding: 14px 24px;
	width: 100%;
	border-radius: 20px;
}

/* Responsive */
@media (max-width: 991px) {
	.header__nav {
		display: none;
	}

	.header__burger {
		display: flex;
	}
}

.hero {
	background: url('../img/hero.png') center/cover no-repeat;
	padding: 40px 0 60px;
}

.hero h1 {
	color: #fff;
	text-align: center;

	font-size: 60px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 6px;
}

.hero__subtitle {
	color: #fff;
	text-align: center;

	font-size: 24px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 24px;
}

.hero__desc {
	color: #fff;
	text-align: center;

	font-size: 20px;

	line-height: 1.4;

	margin: 0 auto 40px;

	max-width: 954px;
}

.hero__buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 60px;
}

.btn-hero {
	display: block;
	padding: 14px 24px;
	border-radius: 20px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-align: center;
}

.btn--outline-hero {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	transition: all 0.5s ease-in-out;
}

.btn--outline-hero:hover {
	background-color: #e0deff;
	color: #6a62e2;
}

.btn--white {
	background-color: white;
	color: #6a62e2;
	border-radius: 20px;
	padding: 18px 24px;
	max-width: 402px;
	margin: 0 auto;

	transition: all 0.5s ease-in-out;
}

.btn--white:hover {
	background-color: #e0deff;
}

.hero__jackpot {
	background-color: #6a62e2;
	padding: 32px;
	border-radius: 20px;
	max-width: 466px;
	margin: 0 auto;
}

.hero__jackpot p {
	color: #fff;
	text-align: center;

	font-size: 24px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 8px;
}

.hero__jackpot h2 {
	color: #fff;
	text-align: center;

	font-size: 40px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 24px;
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 40px;
	}

	.hero__desc {
		font-size: 18px;
	}

	.btn-hero {
		width: 100%;
	}

	.hero__jackpot {
		padding: 24px;
	}

	.hero__jackpot p {
		font-size: 20px;
	}

	.hero__jackpot h2 {
		font-size: 32px;
	}

	.btn--white {
		background-color: white;
		color: #6a62e2;
		border-radius: 20px;
		padding: 18px 24px;
		width: 100%;
	}
}

/* .step {
	flex: 1;
	margin: 0 8px;
} */

.how-it-works {
	padding: 80px 0;
}

/* Text styles */
.subtitle {
	color: #0c0c0c;
	text-align: center;

	font-size: 16px;

	line-height: 1.4;

	margin-bottom: 24px;
}

.title {
	color: #0c0c0c;
	text-align: center;

	font-size: 32px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 6px;
}

.description {
	color: #4c4c4c;
	text-align: center;

	font-size: 18px;

	line-height: 1.4;

	margin-bottom: 40px;
}

.steps {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	gap: 20px;

	margin-bottom: 24px;
}

.step {
	padding: 24px;
	border-radius: 20px;
	background: #f0f4f5;
}

.step-header {
	display: flex;
	align-items: center;
	gap: 12px;

	margin-bottom: 6px;
}

.step-number {
	background: #6a62e2;
	color: #fff;
	width: 48px;
	height: 48px;

	font-size: 20px;
	padding: 12px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;

	font-weight: 700;
	line-height: normal;
}

.step-header h3 {
	color: #0c0c0c;

	font-size: 20px;

	font-weight: 700;
	line-height: 1.2;
}

.step p {
	color: #0c0c0c;

	font-size: 18px;

	line-height: 1.4;
}

.step ul {
	padding: 16px;
	border-radius: 20px;
	background: #fff;

	display: flex;
	flex-direction: column;
	gap: 16px;

	margin-top: 32px;
}

.step ul li {
	display: flex;
	align-items: center;
	gap: 8px;

	color: #0c0c0c;

	font-size: 16px;

	line-height: 1.4;
}

.step-mob {
	margin-bottom: 32px;
}

.balls {
	margin: 24px auto 0;
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: space-between;
}

.balls span {
	background: #fff;
	padding: 8px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 41px;

	color: #6a62e2;

	font-size: 18px;

	font-weight: 700;
	line-height: normal;
}

.btn-outline-step {
	padding: 14px 24px;
	border-radius: 20px;
	border: 1px solid #6a62e2;
	background: #fff;

	color: #6a62e2;
	text-align: center;

	font-size: 18px;

	font-weight: 700;
	line-height: normal;
	width: 100%;
	margin: auto auto 0 auto;

	transition: all 0.5s ease-in-out;
}

.btn-outline-step:hover {
	background: #e0deff;
}

.jackpot {
	padding: 16px;
	border-radius: 20px;
	background: #fff;
}

.jackpot h3 {
	color: #6a62e2;
	text-align: center;

	font-size: 40px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 8px;
}

.jackpot p {
	color: #0c0c0c;
	text-align: center;

	font-size: 20px;

	font-weight: 600;
	line-height: normal;
}

.cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.cta button {
	padding: 14px 24px;
	border-radius: 20px;
	background: #6a62e2;

	color: #fff;
	text-align: center;

	font-size: 18px;

	font-weight: 700;
	line-height: normal;

	border: none;
	transition: all 0.5s ease-in-out;
}

.cta button:hover {
	background: #4037bf;
}

.cta p {
	color: #4c4c4c;
	text-align: center;

	font-size: 18px;

	line-height: 1.4;
}

/* Responsive */
@media (min-width: 1100px) {
	.how-it-works {
		padding: 100px 0;
	}

	/* Text styles */
	.subtitle {
		font-size: 20px;

		margin-bottom: 24px;
	}

	.title {
		font-size: 40px;

		margin-bottom: 6px;
	}

	.description {
		font-size: 20px;

		margin-bottom: 60px;
	}

	/* Step blocks */

	.steps {
		flex-direction: row;
		justify-content: space-between;
	}

	.step {
		padding: 24px;
		border-radius: 20px;
		background: #f0f4f5;
	}

	.step-header {
		display: flex;
		align-items: center;
		gap: 12px;

		margin-bottom: 6px;
	}

	.step-number {
		background: #6a62e2;
		color: #fff;
		width: 57px;
		height: 57px;
		padding: 12px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;

		font-size: 24px;

		font-weight: 700;
		line-height: normal;
	}

	.step-header h3 {
		color: #0c0c0c;

		font-size: 24px;

		font-weight: 700;
		line-height: 1.2;
	}

	.step p {
		color: #0c0c0c;

		font-size: 20px;

		line-height: 1.4;
	}

	.step ul {
		padding: 16px;
		border-radius: 20px;
		background: #fff;

		display: flex;
		flex-direction: column;
		gap: 16px;

		margin-top: 32px;
	}

	.step ul li {
		display: flex;
		align-items: center;
		gap: 8px;

		color: #0c0c0c;

		font-size: 18px;

		line-height: 1.4;
	}

	.balls {
		margin: 24px auto 0;
		display: flex;
		align-items: center;
		gap: 16px;
		justify-content: space-between;
	}

	.balls span {
		background: #fff;
		padding: 8px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 41px;

		color: #6a62e2;

		font-size: 18px;

		font-weight: 700;
		line-height: normal;
	}

	.btn-outline-step {
		padding: 14px 24px;
		border-radius: 20px;
		border: 1px solid #6a62e2;
		background: #fff;

		color: #6a62e2;
		text-align: center;

		font-size: 18px;

		font-weight: 700;
		line-height: normal;
		width: 100%;
		margin: auto auto 0 auto;
	}

	.jackpot {
		padding: 16px;
		border-radius: 20px;
		background: #fff;
	}

	.jackpot h3 {
		color: #6a62e2;
		text-align: center;

		font-size: 40px;

		font-weight: 700;
		line-height: 1.2;

		margin-bottom: 8px;
	}

	.jackpot p {
		color: #0c0c0c;
		text-align: center;

		font-size: 20px;

		font-weight: 600;
		line-height: normal;
	}

	.cta {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 12px;
	}

	.cta button {
		padding: 14px 24px;
		border-radius: 20px;
		background: #6a62e2;

		color: #fff;
		text-align: center;

		font-size: 18px;

		font-weight: 700;
		line-height: normal;

		border: none;
	}

	.cta p {
		color: #4c4c4c;
		text-align: center;

		font-size: 18px;

		line-height: 1.4;
	}
}

.countdown-section {
	background: #fff;
	padding: 250px 0 80px 0;
}

.countdown-section-cont {
	background: url('../img/countdown.png') no-repeat center/cover;
}

.countdown-container {
	position: relative;
	top: -250px;
	border-radius: 20px;
	background: #fff;
	box-shadow:
		0 488px 137px 0 rgba(0, 0, 0, 0),
		0 312px 125px 0 rgba(0, 0, 0, 0.01),
		0 176px 105px 0 rgba(0, 0, 0, 0.05),
		0 78px 78px 0 rgba(0, 0, 0, 0.09),
		0 20px 43px 0 rgba(0, 0, 0, 0.1);
	padding: 16px;
	max-width: 710px;
	margin: 0 auto;
	text-align: center;
}

.countdown-container h2 {
	color: #0c0c0c;
	text-align: center;

	font-size: 32px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 6px;
}

.countdown-container p {
	color: #4c4c4c;
	text-align: center;

	font-size: 18px;

	line-height: 1.4;

	margin-bottom: 32px;
}

.timer {
	display: flex;
	justify-content: space-between;
	gap: 4px;
	margin-bottom: 8px;
	flex-wrap: wrap;
}

.time-box {
	flex: 1;
	border-radius: 20px;
	border: 2px solid #6a62e2;
	background: #fff;
	padding: 8px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.value {
	color: #0c0c0c;
	text-align: center;

	font-size: 20px;

	font-weight: 700;
	line-height: 1.2;
}

.label {
	color: #4c4c4c;
	text-align: center;

	font-size: 14px;

	font-weight: 600;
	line-height: normal;
}

.draw-id {
	color: #0c0c0c;
	text-align: center;

	font-size: 16px;

	line-height: 1.4;

	margin-bottom: 32px;
}

.btn-group {
	display: flex;
	flex-direction: column;

	gap: 16px;
}

.btn {
	text-decoration: none;
	padding: 12px;
	border-radius: 8px;
	font-weight: bold;
	display: block;
}

@media (min-width: 768px) {
	.btn-group {
		flex-direction: row;
		justify-content: center;
	}

	.countdown-container h2 {
		font-size: 28px;
	}

	.countdown-container p {
		font-size: 16px;
	}

	.timer {
		gap: 16px;
	}

	.countdown-section {
		padding: 150px 0 100px 0;
	}

	@media (min-width: 1100px) {
		.countdown-section-cont {
			background: url('../img/countdown.png') no-repeat center/contain;
			border-radius: 30px;
		}
	}

	.countdown-container {
		top: -150px;

		padding: 40px;
	}

	.countdown-container h2 {
		font-size: 40px;
	}

	.countdown-container p {
		font-size: 20px;
	}

	.timer {
		gap: 16px;
	}

	.time-box {
		padding: 16px;

		gap: 0px;
	}

	.value {
		font-size: 40px;
	}

	.label {
		font-size: 20px;
	}

	.draw-id {
		font-size: 18px;
	}

	.btn-group {
		flex-direction: row;

		align-items: center;
	}

	.btn-group a {
		width: 307px;
		border-radius: 20px;
	}
}

.faq-section {
	padding: 100px 0;
	background: #f0f4f5;
}

.faq-section-cont {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.faq-intro {
	max-width: 28%;
}

.faq-intro h2 {
	color: #0c0c0c;

	font-size: 40px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 6px;
}

.faq-intro p {
	color: #0c0c0c;

	font-size: 20px;

	line-height: 1.4;

	margin-bottom: 40px;
}

.faq-support-btn {
	border-radius: 20px;
	background: #6a62e2;
	color: #fff;
	border: none;
	padding: 14px 24px;
	color: var(--White, #fff);
	text-align: center;

	font-size: 18px;

	font-weight: 700;
	line-height: normal;

	cursor: pointer;
	margin-bottom: 12px;
	width: 100%;

	transition: all 0.5s ease-in-out;
}

.faq-support-btn:hover {
	background: #4037bf;
}

.faq-help {
	color: #0c0c0c;
	text-align: center;

	font-size: 18px;

	line-height: 1.4;

	background-color: transparent;
	border: none;
	width: fit-content;
	margin: 0 auto;
}

.faq-items {
	max-width: 832px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.faq-item {
	border-radius: 20px;
	background: #fff;
	padding: 24px;

	transition: all 0.5s ease;
}

.faq-item:hover {
	background: #e0deff;
}

.faq-item.active {
	background: #fff;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question h3 {
	color: #0c0c0c;

	font-size: 24px;

	font-weight: 700;
	line-height: 1.2;
}

.faq-toggle {
	background: transparent;
	border: none;
	width: 72px;
	height: 72px;

	cursor: pointer;

	transition: transform 0.3s ease;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.3s ease,
		padding-top 0.3s ease;
	padding-top: 0;
	color: #4c4c4c;

	font-size: 18px;

	line-height: 1.4;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding-top: 15px;
}

.faq-item.active .faq-toggle {
	transform: rotate(180deg);
}

/* Mobile */
@media (max-width: 768px) {
	.faq-section {
		padding: 80px 0;
	}

	.faq-section-cont {
		flex-direction: column;
		justify-content: space-between;
		gap: 40px;
	}

	.faq-intro {
		max-width: 100%;
	}

	.faq-intro h2 {
		font-size: 32px;
	}

	.faq-intro p {
		font-size: 16px;
	}

	.faq-support-btn {
		font-size: 16px;
	}

	.faq-help {
		font-size: 16px;
	}

	.faq-question {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.faq-question h3 {
		width: 60%;
		font-size: 20px;
	}

	.faq-toggle {
		width: 42px;
		height: 42px;
	}

	.faq-answer {
		font-size: 14px;
	}
}

.winners-section {
	padding: 100px 0;
}

.winners-section h2 {
	color: #0c0c0c;
	text-align: center;

	font-size: 40px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 6px;
}

.winners-subtitle {
	color: #4c4c4c;
	text-align: center;

	font-size: 20px;

	line-height: 1.4;

	margin-bottom: 60px;
}

.winners-grid {
	display: flex;
	gap: 20px;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;

	margin-bottom: 24px;
}

.winner-card {
	border-radius: 20px;
	background: #f0f4f5;
	padding: 24px;

	text-align: left;
}

.winner-card img {
	width: 100%;
	max-width: 297px;
	height: auto;

	margin-bottom: 32px;
}

.winner-info h3 {
	color: #0c0c0c;

	font-size: 24px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 6px;
}

.winners-location {
	color: #4c4c4c;

	font-size: 18px;

	line-height: 1.4;

	margin-bottom: 24px;
}

.winners-amount {
	color: #6a62e2;

	font-size: 24px;

	font-weight: 700;
	line-height: 1.2;
}

.winners-see-all {
	border-radius: 20px;
	background: #6a62e2;
	text-align: center;
	text-decoration: none;
	padding: 14px 24px;

	color: #fff;
	text-align: center;
	display: block;
	width: fit-content;
	margin: 0 auto;
	font-size: 18px;

	font-weight: 700;
	line-height: normal;
	transition: all 0.5s ease-in-out;
}

.winners-see-all:hover {
	background: #4037bf;
}

@media (max-width: 768px) {
	.winners-section {
		padding: 80px 0;
	}

	.winners-section h2 {
		font-size: 32px;
	}

	.winners-subtitle {
		font-size: 18px;

		margin-bottom: 40px;
	}

	.winners-grid {
		flex-direction: column;
		align-items: center;
	}

	.winner-card {
		width: 100%;
		max-width: 345px;
		margin: 0 auto;
	}

	.winner-info h3 {
		font-size: 20px;
	}

	.winners-location {
		font-size: 16px;
	}

	.winners-see-all {
		font-size: 16px;
		width: 100%;
	}
}

.about-section {
	padding: 100px 0;
	background-color: #f0f4f5;
}

.about-container {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 20px;
	flex-wrap: wrap;
}

.about-text {
	flex: 1;
	min-width: 50%;
}

.about-text h2 {
	color: #0c0c0c;

	font-size: 40px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 6px;
}

.about-text p {
	color: #0c0c0c;

	font-size: 20px;

	line-height: 1.4;

	margin-bottom: 40px;
}

.about-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.about-tags span {
	background-color: #fff;

	padding: 8px 16px;
	border-radius: 20px;

	white-space: nowrap;

	color: #6a62e2;
	text-align: center;

	font-size: 16px;

	font-weight: 700;
	line-height: normal;
}

.about-image {
	flex: 1;
	max-width: 710px;
	display: flex;
	justify-content: center;
}

.about-image img {
	width: 100%;
}

/* Responsive */
@media screen and (max-width: 900px) {
	.about-section {
		padding: 80px 0;
	}

	.about-container {
		flex-direction: column;
		text-align: center;
	}

	.about-text {
		flex: 1;
		min-width: 50%;
	}

	.about-text h2 {
		font-size: 32px;

		text-align: start;
	}

	.about-text p {
		text-align: start;
	}

	.about-tags {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
}

.responsible {
	padding: 100px 0;
	background-color: #fff;
}

.responsible h2 {
	color: #0c0c0c;
	text-align: center;

	font-size: 40px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 60px;
}

.responsible__grid {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 100px;
}

.responsible__card {
	flex: 1;
	background: #f0f4f5;
	padding: 24px;
	border-radius: 20px;

	text-align: left;
}

.responsible__card img {
	width: 76px;
	height: 76px;
	margin-bottom: 32px;
}

.responsible__card h3 {
	color: #0c0c0c;

	font-size: 24px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 6px;
}

.responsible__card p {
	color: #0c0c0c;

	font-size: 20px;

	line-height: 1.4;
}

.responsible__card a {
	color: #6a62e2;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.responsible__logos {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 80px;
	align-items: center;
}

.responsible__logos img {
	height: 50px;
	width: auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.responsible {
		padding: 80px 0;
	}

	.responsible h2 {
		font-size: 32px;
	}

	.responsible__grid {
		flex-direction: column;
		align-items: center;
		margin-bottom: 80px;
	}

	.responsible__card img {
		width: 48px;
		height: 48px;
	}

	.responsible__card h3 {
		font-size: 20px;
	}

	.responsible__card p {
		font-size: 16px;
	}

	.responsible__logos {
		gap: 24px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.responsible__logos img {
		height: 30px;
	}
}

.footer {
	background-color: #0c0c0c;

	padding: 20px 0;
}

.footer__top {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
}

.footer__brand {
	flex: 1 1 300px;
}

.footer__brand h3 {
	color: #fff;

	font-size: 20px;

	font-weight: 700;
	line-height: normal;

	margin-bottom: 16px;
}

.footer__brand p {
	color: #fff;

	font-size: 16px;

	line-height: 1.4;
	max-width: 467px;
}

.footer__links {
	display: flex;
	gap: 100px;
}

.footer__column h4 {
	color: #fff;

	font-size: 20px;

	font-weight: 600;
	line-height: normal;

	margin-bottom: 24px;
}

.footer__column ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer__column ul li a {
	color: #fff;

	font-size: 16px;

	line-height: 1.4;
	text-decoration: none;
}

.footer__column ul li a:hover {
	text-decoration: underline;
}

.footer__divider {
	border: none;
	height: 1px;
	background: rgba(255, 255, 255, 0.2);
	margin: 24px auto;
	width: 100%;
}

.footer__bottom {
	max-width: 1243px;
	margin: 0 auto;
	text-align: center;
}

.footer__bottom h4 {
	color: #fff;

	font-size: 20px;

	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.footer__bottom p {
	color: #fff;
	text-align: center;

	font-size: 14px;

	line-height: 1.4;
}

/* Mobile styles */
@media (max-width: 768px) {
	.footer__top {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.footer__brand {
		flex: 1 1 100px;
	}

	.footer__brand p {
		font-size: 14px;
	}

	.footer__links {
		justify-content: space-between;
		width: 100%;
	}

	.footer__column ul li a {
		font-size: 14px;
	}
}

/* Overlay */
.age-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 3000;
}

/* Modal content */
.age-modal__content {
	border-radius: 20px;
	background: #6a62e2;
	padding: 24px;

	text-align: center;
	max-width: 500px;
	width: 90%;
	position: relative;
}

/* Red badge */
.age-modal__badge {
	border-radius: 20px;
	border: 2px solid #ee1717;
	background: #ee1717;
	padding: 16px;

	display: inline-block;
	margin-bottom: 8px;

	color: #fff;
	text-align: center;

	font-size: 24px;

	font-weight: 700;
	line-height: 1.2;
}

/* Headings and text */
.age-modal__content h2 {
	color: #fff;
	text-align: center;

	font-size: 32px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 8px;
}

.age-modal__content p {
	color: #fff;
	text-align: center;

	font-size: 18px;

	line-height: 1.4;

	margin-bottom: 24px;
}

.age-modal__content small {
	color: #fff;
	text-align: center;

	font-size: 16px;

	line-height: 1.4;
}

/* Buttons */
.age-modal__buttons {
	display: flex;
	justify-content: center;
	gap: 17px;
	/* flex-wrap: wrap; */

	margin-bottom: 16px;
}

.btn {
	padding: 18px 24px;
	border: none;
	cursor: pointer;
	border-radius: 20px;
}

.yes-btn {
	background-color: #fff;
	color: #6a62e2;

	font-size: 18px;

	font-weight: 700;
	line-height: normal;
}

.no-btn {
	color: #fff;

	font-size: 18px;

	font-weight: 700;
	line-height: normal;

	border: 1px solid #fff;
	background-color: transparent;
}

/* Responsive */
@media (max-width: 480px) {
	.age-modal__buttons {
		flex-direction: column;
	}

	.btn {
		width: 100%;
	}

	.age-modal__badge {
		padding: 10px 16px;

		font-size: 16px;
	}

	/* Headings and text */
	.age-modal__content h2 {
		font-size: 24px;
	}

	.age-modal__content p {
		font-size: 16px;
	}

	.age-modal__content small {
		font-size: 14px;
	}

	.yes-btn {
		font-size: 16px;
	}

	.no-btn {
		font-size: 16px;
	}
}

.cookie-modal {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 400px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	padding: 20px;
	z-index: 1000;
	display: none;
	animation: slideUp 0.4s ease-out;
}

.cookie-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: center;
}

.cookie-title {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
}

.cookie-text {
	font-size: 14px;
	color: #333;
}

.cookie-text a {
	color: #6a62e2;
	text-decoration: underline;
}

.cookie-btn {
	padding: 10px 20px;
	background: #6a62e2;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

.cookie-btn:hover {
	background: #6a62e2;
}

@keyframes slideUp {
	from {
		transform: translate(-50%, 100%);
		opacity: 0;
	}
	to {
		transform: translate(-50%, 0);
		opacity: 1;
	}
}

@media (max-width: 480px) {
	.cookie-modal {
		left: 16px;
		right: 16px;
		transform: none;
		max-width: none;
	}
}

/* Overlay */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 99;
	display: none;
}

/* Modal */
.modal {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 90%;
	max-width: 500px;
	background: #fff;
	border-radius: 20px;
	padding: 24px;
	transform: translate(-50%, -50%);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	z-index: 100;
	display: none;
	text-align: center;
	animation: fadeIn 0.3s ease;
}

.modal-box h2 {
	margin-bottom: 18px;
}

.modal-box h3 {
	margin: 12px 0;
}

.modal-box input {
	display: block;
	width: 100%;
	padding: 10px;
	margin: 8px 0;
	border: 1px solid #ccc;
	border-radius: 8px;
}

.modal-box button {
	background: #6a62e2;
	color: #fff;
	padding: 10px;
	width: 100%;
	border: none;
	border-radius: 8px;
	margin-top: 12px;
	font-weight: 600;
	cursor: pointer;
}

.switch-text {
	margin-top: 12px;
	font-size: 14px;
}

.switch-text a {
	color: #6a62e2;
	text-decoration: underline;
	cursor: pointer;
}

.open-btn {
	padding: 10px 20px;
	margin: 20px 10px 0 0;
	background: #6a62e2;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translate(-50%, -45%);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

.privacy-policy {
	padding: 100px 0;
	background-color: #fff;
}

.privacy-policy h1 {
	color: #0c0c0c;

	font-size: 40px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 6px;
}

.updated {
	color: #0c0c0c;

	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 60px;
}

.intro {
	color: #4c4c4c;

	font-size: 18px;

	line-height: 1.4;
	margin-bottom: 60px;
}

.privacy-policy h2 {
	color: #0c0c0c;

	font-size: 32px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 32px;
}

.privacy-policy h3 {
	color: #0c0c0c;

	font-size: 24px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 6px;
}

.privacy-policy h4 {
	margin-bottom: 6px;
	color: #0c0c0c;

	font-size: 20px;

	font-weight: 700;
	line-height: 1.2;
}

.privacy-policy p {
	margin-bottom: 16px;
}

@media (max-width: 768px) {
	.privacy-policy {
		padding: 40px 0;
	}

	.privacy-policy h1 {
		font-size: 32px;
	}

	.updated {
		font-size: 18px;

		margin-bottom: 40px;
	}

	.intro {
		font-size: 16px;

		margin-bottom: 40px;
	}

	.privacy-policy h2 {
		font-size: 24px;
	}

	.privacy-policy h3 {
		font-size: 24px;
	}

	.privacy-policy p {
		margin-bottom: 14px;
	}
}

.lotto-block {
	background: #fff;
	border: 3px solid #6a62e2;
	border-radius: 10px;
	padding: 24px;
	font-family: 'Segoe UI', Tahoma, sans-serif;
	font-size: 18px;
	line-height: 1.7;
	color: #444;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	margin-top: 40px;
}

.lotto-block p {
	margin-bottom: 18px;
}

.lotto-block a {
	color: #6a62e2;
	font-weight: 500;
	text-decoration: none;
	border-bottom: 1px dashed #6a62e2;
	transition:
		color 0.2s ease,
		border-color 0.2s ease;
}

.lotto-block a:hover {
	color: #3b3684;
	border-color: #6a62e2;
}

.lotto-heading {
	font-weight: 700;
	color: #6a62e2;
	display: block;
	margin-bottom: 6px;
}
