.home-header {
	width: 100%;
	display: flex;
	justify-content: center;
	background-color: transparent;
}

.home-header__container {
	width: 100%;
	max-width: var(--header-max-width);
	height: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	gap: 1rem;
}

@media (min-width: 768px) {
	.home-header__container {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

@media (max-width: 640px) {
	.home-header__container {
		height: 56px;
	}
}

.home-header__section {
	display: flex;
	align-items: center;
}

.home-header__section--logo {
	flex-shrink: 0;
	position: relative;
}

.home-header__section--logo:after {
	position: absolute;
	content: "";
	width: 15px;
	height: 15px;
	top: 0;
	right: 0;
	transform: translate(45%, -45%);
	background-image: url(../images/icon-star.svg);
	background-size: contain;
	background-position: top right;
	background-repeat: no-repeat;
	pointer-events: none;
}

.home-header__section--nav {
	flex: 1 1 0%;
	justify-content: center;
}

.home-header__section--actions {
	flex-shrink: 0;
	gap: 0.5rem;
}

@media (max-width: 640px) {
	.home-header__section--actions {
		gap: 0.25rem;
	}
}

.home-header__logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.home-header__logo-wrapper {
	position: relative;
	display: inline-flex;
}

.home-header__logo-image {
	display: block;
	width: 100px;
	height: auto;
}

@media (max-width: 640px) {
	.home-header__logo-image {
		width: 80px;
	}
}

.home-header__logo-spark {
	position: absolute;
	top: 0;
	right: 0;
	width: 15%;
	height: auto;
	color: #fe8125;
	transform: translate(45%, -45%);
	pointer-events: none;
}

.home-header__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-header__menu a {
	color: var(--home-header-text);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	transition: opacity 0.2s ease;
}

.home-header__menu a:hover,
.home-header__menu .current-menu-item>a {
	opacity: 0.85;
	text-decoration: underline;
}

.header-auth-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #4b45a2;
	border: none;
	border-radius: 10px;
	padding: 2px;
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.header-auth-button:hover {
	opacity: 0.9;
}

.header-auth-button:disabled {
	cursor: not-allowed;
}

.header-auth-button-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #eff3ff 0%, #d2dbf2 100%);
	border-radius: 8px;
	padding: 12px 24px;
	font-weight: 600;
	color: #494387;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
}

@media (max-width: 640px) {
	.header-auth-button-inner {
		padding: 6px 12px;
		font-size: 1rem;
	}
}

.home-header .header-auth-button-secondary {
	background: transparent;
	padding: 0;
}

.home-header .header-auth-button-secondary .header-auth-button-inner {
	background: transparent;
	color: var(--home-header-text);
	border: none;
}

.home-header__signup .header-auth-button {
	background: transparent;
	padding: 0;
	border-radius: 9999px;
}

.home-header__signup .header-auth-button-inner {
	background: var(--home-accent);
	color: #fff;
	border-radius: 9999px;
	padding: 10px 24px;
}

@media (max-width: 1023px) {
	.home-header__signup {
		display: none;
	}


}

.home-header-dropdown-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 8px;
	background: transparent;
	border: none;
	cursor: pointer;
	color: var(--home-header-text);
	transition: opacity 0.2s ease;
}

.home-header-dropdown-toggle:hover:not(:disabled) {
	opacity: 0.8;
}

.home-header-dropdown-toggle:focus-visible {
	outline: 2px dashed #f5c566;
	outline-offset: 4px;
}

.home-header-dropdown-toggle__icon {
	display: block;
	width: 100%;
	height: auto;
}

.home-header-dropdown-toggle__notification {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 9px;
	height: 9px;
	background-color: #f04438;
	border-radius: 9999px;
}

@media (max-width: 767px) {
	.home-header-dropdown-toggle {
		width: 38px;
		height: 38px;
	}
}

.dropdown-container-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1040;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: none;
	background: rgba(0, 0, 0, 0);
	transition: background-color 100ms ease;
	pointer-events: none;
	cursor: default;
}

.dropdown-container-backdrop.is-visible {
	background: rgba(0, 0, 0, 0.5);
	pointer-events: auto;
}

.dropdown-container {
	position: fixed;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: var(--brand-navy, #231d58);
	z-index: 1041;
}

.home-header-dropdown-panel {
	background: var(--home-page-bg, var(--brand-navy, #231d58));
}

.dropdown-container--mobile {
	top: 0;
	right: 0;
	width: 90%;
	height: 100%;
	border-radius: 40px 0 0 40px;
	transform: translateX(100%);
	transition: transform 100ms ease-out;
	overflow-y: auto;
}

.dropdown-container--mobile.is-visible {
	transform: translateX(0);
}

.dropdown-container--desktop {
	width: 500px;
	max-height: calc(100vh - 100px);
	border-radius: 24px;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 100ms ease, transform 100ms ease;
	overflow-y: auto;
}

.dropdown-container--desktop.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.dropdown-header {
	position: relative;
	padding: 24px 24px 16px;
}

.dropdown-header__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	border-radius: 8px;
	background: transparent;
	color: #fff;
	cursor: pointer;
	transition: background-color 150ms ease;
}

.dropdown-header__close:hover {
	background: rgba(255, 255, 255, 0.1);
}

.dropdown-header__close:focus-visible {
	outline: 2px dashed #f5c566;
	outline-offset: 2px;
}

.dropdown-header__logo {
	display: block;
	padding: 0;
	margin: 0 0 24px;
	border: none;
	background: transparent;
	text-decoration: none;
}

.dropdown-header__logo img {
	display: block;
	max-width: 180px;
	height: 21.55px;
}

.dropdown-header__logo:focus-visible {
	outline: 2px dashed #f5c566;
	outline-offset: 4px;
}

.dropdown-content {
	display: flex;
	flex-direction: column;
}

.dropdown-content__items {
	flex: 1;
	overflow-y: auto;
	padding: 8px 0;
}

.dropdown-content__footer {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 8px 0;
	margin-top: auto;
}

.dropdown-content__faq {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 16px 24px;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	transition: background-color 150ms ease;
}

.dropdown-content__faq:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.dropdown-content__faq:focus-visible {
	outline: 2px dashed #f5c566;
	outline-offset: -2px;
}

.dropdown-menu-item__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-right: 16px;
	flex-shrink: 0;
}

.dropdown-menu-item__icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.dropdown-container__menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dropdown-container__menu li+li {
	margin-top: 0;
}

.dropdown-container__menu a {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 16px 24px;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	transition: background-color 150ms ease;
}

.dropdown-container__menu a:before {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	width: 25px;
	height: 25px;
	margin-right: 16px;
}

.dropdown-container__menu .icon-promo a:before {
	background-image: url(../images/icons/promotion_icon.svg);
}

.dropdown-container__menu .icon-terms a:before {
	background-image: url(../images/icons/terms-and-conditions-icon.svg);
}

.dropdown-container__menu .icon-safety a:before {
	background-image: url(../images/icons/sz-player-safety.svg);
}

.dropdown-container__menu .icon-about a:before {
	background-image: url(../images/icons/about_icon.svg);
}

.dropdown-container__menu .icon-vip a:before {
	background-image: url(../images/icons/vip_program_icon.svg);
}

.dropdown-container__menu a:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.dropdown-container__menu a:focus-visible {
	outline: 2px dashed #f5c566;
	outline-offset: -2px;
}

.dropdown-container__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 0 1rem 1.5rem;
}

@media (min-width: 1024px) {
	.dropdown-container__actions {
		display: none;
	}
}

.dropdown-container__actions .header-auth-button {
	width: 100%;
}

.dropdown-container__actions .header-auth-button-inner {
	width: 100%;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}