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

html {
	scroll-behavior: smooth
}

body {
	font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
	line-height: 1.6;
	color: #fff;
	background-color: #11021c;
	overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Libre Baskerville", serif;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem
}

h1 {
	font-size: clamp(1.75rem, 5vw, 3rem);
	text-transform: capitalize;
}

h2 {
	font-size: clamp(1.5rem, 4vw, 1.75rem);
}

h3 {
	font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
	font-size: clamp(1rem, 2.5vw, 1.125rem);
	margin-bottom: 1rem;
	line-height: 1.6
}

/* BG & Colors */
.color-grad {
	background: linear-gradient(135deg, #9909ff, #e17915);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}


.bg-img {
	background: #26073c url(../images/hero-bg.jpg) no-repeat center center;
	background-size: cover;
}

.bg-fixed {
	background-attachment: fixed;
}

.bg-color {
	background-color: #11021c;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(1rem, 4vw, 2rem);
	width: 100%
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all .3s ease;
	cursor: pointer;
	border: none;
	font-size: 1rem;
	text-align: center;
	white-space: nowrap
}

.btn-primary {
	background: linear-gradient(135deg, #9909ff, #ff8a50);
	color: #fff;
	box-shadow: 0 4px 15px #9909ff4d
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px #9909ff66;
	background: linear-gradient(135deg, #ff9800, #ff7043)
}

.btn-secondary {
	background: transparent;
	color: #9909ff;
	border: 2px solid #9909ff
}

.btn-secondary:hover {
	background: #9909ff;
	color: #11021c;
	transform: translateY(-2px)
}

.section {
	padding: clamp(3rem, 8vw, 5rem) 0;
	position: relative
}

.section-dark {
	background: #26073c url(../images/hero-bg.jpg) no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}

.card {
	background: #ffffff0d;
	border-radius: 16px;
	padding: 2rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, .1);
	transition: all .3s ease
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px #0000004d;
	background: #ffffff14
}

.stars {
	color: #9909ff;
	font-size: 1.2rem;
	margin: .5rem 0;
	letter-spacing: 2px
}

.grid-auto-fit {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem
}

.grid-auto-fill {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem
}

.text-primary {
	color: #9909ff
}

.text-secondary {
	color: #9909ff
}

.text-muted {
	color: #ffffffb3
}

.text-light {
	color: #ffffffe6
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(30px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes pulse {

	0%,
	to {
		opacity: 1
	}

	50% {
		opacity: .7
	}
}

.animate-fade-in {
	animation: fadeInUp .6s ease-out
}

.animate-pulse {
	animation: pulse 2s infinite
}

.btn:focus,
button:focus {
	outline: 2px solid #9909ff;
	outline-offset: 2px
}

@media (max-width: 768px) {
	.container {
		padding: 0 1rem
	}

	.section {
		padding: 2rem 0
	}

	.btn {
		padding: 14px 20px;
		font-size: .95rem
	}

	.grid-auto-fit,
	.grid-auto-fill {
		grid-template-columns: 1fr;
		gap: 1.5rem
	}
}

@media (max-width: 480px) {
	.btn {
		width: 100%;
		padding: 16px
	}
}

::-webkit-scrollbar {
	width: 8px
}

::-webkit-scrollbar-track {
	background: #11021c
}

::-webkit-scrollbar-thumb {
	background: #9909ff;
	border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
	background: #ff9800
}

.header {
	background: #11021cf2;
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 0;
	transition: all .3s ease;
	overflow: visible
}

.header:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #9909ff0d, #9909ff0d, #9909ff0d);
	animation: shimmer 3s ease-in-out infinite
}

@keyframes shimmer {

	0%,
	to {
		opacity: .3
	}

	50% {
		opacity: .6
	}
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 9999
}

.logo {
	display: flex;
	align-items: center;
	gap: .75rem;
	z-index: 1001;
	position: relative;
	text-decoration: none;
	transition: all .3s ease
}

.logo:hover {
	transform: scale(1.02)
}

.logo svg {
	transition: transform .3s ease;
	filter: drop-shadow(0 2px 8px rgba(255, 167, 38, .3))
}

.logo:hover svg {
	transform: rotate(10deg) scale(1.05)
}

.logo-text {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: -0.05em;
	color: #fff;
	white-space: nowrap;
}

.logo:hover .logo-text {
	color: #9909ff
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: clamp(1rem, 2vw, 1.5rem);
	margin: 0;
	padding: 0;
	transition: all .3s ease;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center
}

.nav-link {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-size: clamp(.8rem, 1.5vw, .9rem);
	transition: all .3s ease;
	position: relative;
	padding: .5rem .75rem;
	border-radius: 8px;
	white-space: nowrap;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: .5rem
}

.nav-link:hover {
	color: #9909ff;
	background: transparent;
	transform: translateY(-2px)
}

.nav-link.active {
	/* color: #9909ff;
	background: #9909ff26;
	border: 1px solid rgba(255, 167, 38, .3) */
}

.nav-link:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #9909ff, #9909ff);
	transition: all .3s ease;
	transform: translate(-50%)
}

.nav-link:hover:after,
.nav-link.active:after {
	width: 80%
}

.dropdown {
	position: relative
}

.dropdown-toggle {
	display: flex;
	align-items: center;
	gap: .5rem
}

.dropdown-arrow {
	transition: transform .3s ease
}

.dropdown[data-open=true] .dropdown-arrow {
	transform: rotate(180deg)
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #11021cfa;
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	padding: 1rem 0;
	margin-top: .5rem;
	min-width: 280px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all .3s ease;
	box-shadow: 0 20px 40px #0006;
	z-index: 1002;
	overflow: hidden
}

.dropdown-menu:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #9909ff0d, #9909ff0d);
	pointer-events: none
}

.dropdown[data-open=true] .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

.dropdown-menu li {
	list-style: none
}

.dropdown-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.5rem;
	color: #ffffffe6;
	text-decoration: none;
	transition: all .3s ease;
	border-radius: 0;
	position: relative;
	z-index: 1
}

.dropdown-link:hover {
	background: transparent;
	color: #9909ff;
	transform: translate(8px)
}

.dropdown-link.active {
	background: #9909ff26;
	color: #9909ff;
	border-left: 3px solid #9909ff
}

.dropdown-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff1a;
	border-radius: 10px;
	transition: all .3s ease
}

.dropdown-link:hover .dropdown-icon {
	background: #9909ff33;
	transform: scale(1.1)
}

.dropdown-content {
	display: flex;
	flex-direction: column;
	gap: .25rem
}

.dropdown-title {
	font-weight: 600;
	font-size: .95rem
}

.dropdown-desc {
	font-size: .8rem;
	color: #fff9
}

.header-extras {
	display: flex;
	align-items: center;
	gap: 1rem;
	z-index: 1001
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: .75rem;
	gap: 4px;
	z-index: 1001;
	position: relative;
	border-radius: 8px;
	transition: all .3s ease
}

.mobile-menu-toggle:hover {
	background: transparent
}

.hamburger-line {
	width: 25px;
	height: 3px;
	background: #fff;
	transition: all .3s ease;
	border-radius: 2px;
	transform-origin: center
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
	background: #9909ff
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
	opacity: 0;
	transform: scale(0)
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
	background: #9909ff
}

.mobile-overlay {
	position: fixed;
	inset: 0;
	background: #000c;
	backdrop-filter: blur(5px);
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
	z-index: 999
}

.mobile-overlay.active {
	opacity: 1;
	visibility: visible
}

.header-bg-elements {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1
}

.floating-chip {
	position: absolute;
	font-size: 1.2rem;
	opacity: .1;
	animation: floatSlow 6s ease-in-out infinite
}

.bg-chip-1 {
	top: 20%;
	right: 15%;
	animation-delay: 0s
}

.bg-chip-2 {
	top: 60%;
	left: 10%;
	animation-delay: -2s
}

.bg-chip-3 {
	top: 40%;
	right: 5%;
	animation-delay: -4s
}

@keyframes floatSlow {

	0%,
	to {
		transform: translateY(0) rotate(0)
	}

	50% {
		transform: translateY(-10px) rotate(5deg)
	}
}

@media (max-width: 1200px) {
	.nav-menu {
		gap: 1rem
	}

	.nav-link {
		font-size: .85rem;
		padding: .4rem .6rem
	}
}

@media (max-width: 1024px) {
	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 350px;
		max-width: 90vw;
		height: 100vh;
		background: linear-gradient(135deg, #11021cfa, #2c3e50fa);
		backdrop-filter: blur(20px);
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		gap: 0;
		transition: right .4s cubic-bezier(.4, 0, .2, 1);
		flex-wrap: nowrap;
		z-index: 1000;
		padding: 6rem 0 2rem;
		overflow-y: auto;
		border-left: 1px solid rgba(255, 255, 255, .1)
	}

	.nav-menu:before {
		content: "";
		position: absolute;
		inset: 0;
		background: radial-gradient(circle at 50% 20%, rgba(255, 167, 38, .1) 0%, transparent 70%);
		pointer-events: none
	}

	.nav-menu.active {
		right: 0;
		margin-top: 67px
	}

	.nav-menu li {
		width: 100%
	}

	.nav-link {
		font-size: 1.1rem;
		padding: 1.25rem 2rem;
		text-align: left;
		width: 100%;
		border-radius: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .05);
		position: relative;
		overflow: hidden
	}

	.nav-link:before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 4px;
		background: linear-gradient(180deg, #9909ff, #9909ff);
		transform: scaleY(0);
		transition: transform .3s ease
	}

	.nav-link:hover:before,
	.nav-link.active:before {
		transform: scaleY(1)
	}

	.nav-link:hover {
		/* background: transparent; */
		transform: translate(8px)
	}

	.dropdown {
		width: 100%
	}

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

	.dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: #ffffff0d;
		margin: 0;
		box-shadow: none;
		border-radius: 0;
		border: none;
		border-top: 1px solid rgba(255, 255, 255, .1);
		max-height: 0;
		overflow: hidden;
		transition: max-height .4s ease, padding .4s ease;
		padding: 0
	}

	.dropdown[data-open=true] .dropdown-menu {
		max-height: 300px;
		padding: .5rem 0
	}

	.dropdown-link {
		padding: 1rem 3rem;
		font-size: 1rem;
		border-bottom: 1px solid rgba(255, 255, 255, .03)
	}

	.dropdown-link:hover {
		transform: translate(12px)
	}

	.mobile-menu-toggle {
		display: flex
	}
}

@media (max-width: 768px) {
	.nav-menu {
		width: 300px
	}

	.nav-link {
		font-size: 1rem;
		padding: 1rem 1.5rem
	}

	.dropdown-link {
		padding: .875rem 2.5rem;
		font-size: .95rem
	}
}

@media (max-width: 480px) {
	.header {
		padding: .75rem 0
	}

	.logo-text {
		font-size: 1rem
	}

	.logo svg {
		width: 32px;
		height: 32px
	}

	.nav-menu {
		width: 280px
	}

	.nav-link {
		font-size: .95rem;
		padding: .875rem 1.25rem
	}

	.dropdown-link {
		padding: .75rem 2rem;
		font-size: .9rem
	}

	.dropdown-icon {
		width: 35px;
		height: 35px;
		font-size: 1.25rem
	}
}

.footer {
	background: linear-gradient(135deg, #11021c, #0f1419);
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: clamp(3rem, 8vw, 4rem) 0 1rem;
	position: relative;
	overflow: hidden
}

.footer:before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 0%, rgba(255, 167, 38, .05) 0%, transparent 50%)
}

.footer-content {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	position: relative;
	z-index: 1
}

.footer-main {
	display: flex;
	justify-content: center;
	gap: 3rem;
	align-items: start
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 1.5rem
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: .75rem;
	transition: transform .3s ease
}

.footer-logo:hover {
	transform: scale(1.05)
}

.footer-logo svg {
	transition: transform .3s ease
}

.footer-logo:hover svg {
	transform: rotate(10deg)
}

.footer-logo span {
	font-family: "Libre Baskerville", serif;
	;
	font-weight: 700;
	font-size: clamp(1.125rem, 3vw, 1.25rem);
	color: #9909ff;
	white-space: nowrap
}

.brand-description {
	color: #fffc;
	font-size: clamp(.9rem, 2.5vw, .95rem);
	line-height: 1.5;
	margin: 0
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 2rem
}

.footer-contact h3 {
	color: #9909ff;
	margin: 0;
	font-size: clamp(1rem, 2.5vw, 1.1rem);
	font-weight: 600
}

.contact-info p {
	color: #fffc;
	margin: 0;
	font-size: clamp(.9rem, 2.5vw, .95rem);
	padding: 1rem;
	transition: all .3s ease
}

.contact-info p:hover {
	background: #ffffff14;
	border-color: #9909ff4d;
	transform: translateY(-2px)
}

.footer-legal-links {
	background: #ffffff0d;
	border-radius: 16px;
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, .1);
	backdrop-filter: blur(10px);
	transition: all .3s ease
}

.footer-legal-links:hover {
	background: #ffffff14;
	border-color: #9909ff4d;
	transform: translateY(-4px);
	box-shadow: 0 10px 30px #0000004d
}

.footer-legal-links h3 {
	color: #9909ff;
	margin-bottom: 1rem;
	font-size: clamp(1rem, 2.5vw, 1.1rem);
	font-weight: 600
}

.footer-legal-links ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.footer-legal-links li {
	margin-bottom: .75rem
}

.footer-legal-links li:last-child {
	margin-bottom: 0
}

.footer-legal-links a {
	color: #ffffffb3;
	text-decoration: none;
	font-size: clamp(.85rem, 2vw, .9rem);
	transition: all .3s ease;
	display: block;
	border-radius: 6px;
	padding: .5rem
}

.footer-legal-links a:hover {
	color: #9909ff;
	/* background: transparent; */
	transform: translate(8px);
	padding-left: 1rem
}

.responsible-gambling {
	background: #ffffff0d;
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, .1);
	backdrop-filter: blur(10px)
}

.responsible-gambling h3 {
	color: #9909ff;
	margin-bottom: 1rem;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	text-align: center
}

.responsible-text {
	color: #ffffffe6;
	text-align: center;
	margin-bottom: 2rem;
	font-size: clamp(.95rem, 2.5vw, 1rem);
	line-height: 1.5
}

.gambling-orgs {
	display: flex;
	gap: 2rem;
	align-items: stretch;
	justify-content: center;
	margin: 1rem auto;
}

.org-link {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	border-radius: 16px;
	transition: all .3s ease;
}

.org-link:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px #0003
}

.org-logo {
	height: 48px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
	filter: invert(1) brightness(200%);
}

.org-info {
	display: flex;
	gap: 1rem;
	text-align: left
}

.helpline,
.age-restriction {
	display: flex;
	align-items: center;
	gap: 1rem;
	/* background: #ffffff0d; */
	padding: 1rem;
	border-radius: 12px;
	/* border: 1px solid rgba(255, 255, 255, .1) */
}

.helpline-icon,
.age-icon {
	font-size: 1.5rem;
	flex-shrink: 0
}

.helpline-text,
.age-text {
	color: #ffffffe6;
	font-size: .9rem;
	line-height: 1.3
}

.helpline-text strong,
.age-text strong {
	color: #9909ff
}

.footer-disclaimer {
	/* background: #ffffff0d; */
	border-radius: 12px;
	padding: clamp(1.25rem, 4vw, 1.5rem);
	/* border: 1px solid rgba(255, 255, 255, .1); */
	backdrop-filter: blur(10px);
	text-align: center
}

.disclaimer-text {
	color: #ffffffe6;
	font-size: clamp(.875rem, 2.5vw, .9rem);
	line-height: 1.5;
	margin-bottom: 1.5rem
}

.safety-badges {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap
}

.footer .badge {
	position: static;
	scale: 1.2;
}

.badge {
	background: #9909ff33;
	color: #9909ff;
	padding: .5rem 1rem;
	border-radius: 20px;
	font-size: clamp(.75rem, 2vw, .8rem);
	font-weight: 600;
	border: 1px solid rgba(128, 203, 196, .3);
	transition: all .3s ease;
	white-space: nowrap
}

.badge:hover {
	background: #9909ff4d;
	transform: translateY(-2px)
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, .1);
	flex-wrap: wrap;
	gap: 1rem
}

.copyright p {
	color: #fff9;
	font-size: clamp(.8rem, 2vw, .85rem);
	margin: 0
}

.footer-legal {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap
}

.footer-legal a {
	color: #fff9;
	text-decoration: none;
	font-size: clamp(.8rem, 2vw, .85rem);
	transition: color .3s ease
}

.footer-legal a:hover {
	color: #9909ff
}

@media (max-width: 1024px) {
	.footer-main {
		grid-template-columns: 1fr;
		gap: 2.5rem
	}

	.gambling-orgs {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem
	}

	.gambling-orgs {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.gambling-orgs > * {
		color: white;
		padding: 1rem;
		display: flex;
		justify-content: center;
		align-items: center;
		/* height: 200px; */
	}

	/* третий элемент на всю ширину */
	.org-info {
		grid-column: 1 / -1;
		width: 100%
	}
}

@media (max-width: 768px) {
	.org-info {
		flex-direction: column
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 1rem
	}

	.footer-legal {
		justify-content: center
	}

	.safety-badges {
		gap: .75rem
	}

	.responsible-gambling {
		padding: 1.5rem
	}

	.org-info {
		gap: .75rem
	}

	.helpline,
	.age-restriction {
		padding: .75rem
	}

	.footer-legal-links {
		padding: 1.5rem
	}

	.footer-contact {
		gap: 1.5rem
	}
}

@media (max-width: 768px) {
	.footer {
		padding: 2rem 0 1rem
	}

	.footer-content {
		gap: 2rem
	}

	.footer-disclaimer {
		padding: 1.25rem
	}

	.safety-badges {
		flex-direction: column;
		align-items: center;
		gap: .5rem
	}

	.badge {
		display: inline-block;
		padding: .4rem .8rem
	}

	.footer-legal {
		flex-direction: column;
		gap: .5rem
	}

	.responsible-gambling {
		padding: 1.25rem
	}

	.gambling-orgs {
		gap: .5rem;
		grid-template-columns: repeat(1, 1fr);
	}

	.helpline,
	.age-restriction {
		flex-direction: column;
		text-align: center;
		gap: .5rem
	}

	.footer-legal-links {
		padding: 1.25rem
	}

	.footer-contact {
		gap: 1.25rem
	}
}


.border {
	border-color: rgba(255, 255, 255, .01);
}

.card-title {
	font-size: 18px;
	text-transform: uppercase;
}