:root {
	--primary: #ff4b4b;
	--primary-glow: rgba(255, 75, 75, 0.3);
	--text: #ffffff;
	--text-secondary: rgba(255, 255, 255, 0.7);
	--surface: #111111;
	--background: #000000;
	--glass: rgba(255, 255, 255, 0.05);
	--glass-border: rgba(255, 255, 255, 0.1);
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 4rem;
	--spacing-xl: 6rem;
	--border-radius: 12px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--background);
	color: var(--text);
	font-family: "Bitter", serif;
	line-height: 1.6;
	overflow-x: hidden;
	min-width: 375px;
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 20% 20%, rgba(255, 75, 75, 0.15) 0%, transparent 40%),
		radial-gradient(circle at 80% 80%, rgba(255, 75, 75, 0.1) 0%, transparent 40%),
		url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.03)"/></svg>')
			repeat;
	z-index: -1;
	-webkit-animation: gradientBG 15s ease infinite;
	animation: gradientBG 15s ease infinite;
	background-size: 200% 200%, 200% 200%, 30px 30px;
	pointer-events: none;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1.5rem 0;
	background: rgba(0, 0, 0, 0.8);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--glass-border);
	transition: var(--transition);
}

.navbar.scrolled {
	padding: 1rem 0;
	background: rgba(0, 0, 0, 0.95);
}

.navbar-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.logo {
	display: inline-block;
	text-align: left;
	line-height: 1.1;
	font-family: "Montserrat", "Inter", Arial, sans-serif;
	font-weight: 800;
	letter-spacing: -1.5px;
	padding: 0.5rem 1.5rem;
	background: none;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
	color: var(--text);
	transition: var(--transition);
	position: relative;
}

.logo-main {
	display: block;
	font-size: 2.2rem;
	font-family: "Montserrat", "Inter", Arial, sans-serif;
	font-weight: 900;
	letter-spacing: 0.5px;
	background: linear-gradient(90deg, #ff4b4b 0%, #fff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
	position: relative;
	z-index: 2;
}

.logo-accent {
	display: block;
	height: 7px;
	width: 100%;
	margin-top: -0.3em;
	margin-bottom: 0.2em;
	border-radius: 6px;
	background: linear-gradient(90deg, #ff4b4b 0%, #fff 100%);
	box-shadow: 0 0 16px 2px rgba(255, 75, 75, 0.25), 0 2px 12px 0 rgba(255, 255, 255, 0.12);
	-webkit-animation: accent-glow 2.5s ease-in-out infinite alternate;
	animation: accent-glow 2.5s ease-in-out infinite alternate;
}

@-webkit-keyframes accent-glow {
	0% {
		box-shadow: 0 0 16px 2px rgba(255, 75, 75, 0.25), 0 2px 12px 0 rgba(255, 255, 255, 0.12);
	}
	100% {
		box-shadow: 0 0 32px 6px rgba(255, 75, 75, 0.35), 0 2px 24px 0 rgba(255, 255, 255, 0.18);
	}
}

@keyframes accent-glow {
	0% {
		box-shadow: 0 0 16px 2px rgba(255, 75, 75, 0.25), 0 2px 12px 0 rgba(255, 255, 255, 0.12);
	}
	100% {
		box-shadow: 0 0 32px 6px rgba(255, 75, 75, 0.35), 0 2px 24px 0 rgba(255, 255, 255, 0.18);
	}
}

.logo-sub {
	display: inline-block;
	font-size: 1.3rem;
	font-family: "Montserrat", "Inter", Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 0.2px;
	background: linear-gradient(90deg, #ff8686 0%, #fff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
	margin-top: 0.1em;
	position: relative;
	z-index: 2;
}

.logo-sub-accent {
	display: block;
	height: 3px;
	width: 70%;
	margin-top: 0.1em;
	border-radius: 2px;
	background: linear-gradient(90deg, rgba(255, 75, 75, 0.5) 0%, rgba(255, 255, 255, 0.2) 100%);
	-webkit-filter: blur(0.5px);
	filter: blur(0.5px);
	opacity: 0.7;
	margin-left: 0.1em;
}

.logo:hover .logo-main,
.logo:hover .logo-sub {
	background: linear-gradient(90deg, var(--primary), #fff 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.logo:hover .logo-accent {
	background: linear-gradient(90deg, #fff 0%, #ff4b4b 100%);
}

.logo:hover .logo-sub-accent {
	background: linear-gradient(90deg, #fff 0%, #ff8686 100%);
}

.nav-links {
	display: flex;
	gap: 3rem;
	align-items: center;
}

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
	transition: var(--transition);
	position: relative;
	padding: 0.5rem 0;
}

.nav-link::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, var(--primary), transparent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.nav-link:hover {
	color: var(--text);
}

.nav-link:hover::before {
	transform: scaleX(1);
}

.nav-button {
	background: linear-gradient(135deg, var(--primary), #ff6b6b);
	color: white;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: -0.3px;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	box-shadow: 0 5px 15px var(--primary-glow);
}

.nav-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transform: translateX(-100%);
	transition: 0.5s;
}

.nav-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px var(--primary-glow);
}

.nav-button:hover::before {
	transform: translateX(100%);
}

.hero {
	height: auto;
	min-height: 100dvh;
	padding: 110px 0 30px 0;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at top right, rgba(255, 75, 75, 0.15), transparent 60%),
		radial-gradient(circle at bottom left, rgba(255, 75, 75, 0.1), transparent 60%);
	z-index: -1;
}

.hero-content {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	gap: 3vw;
}

.hero-text {
	flex: 1 1 0;
	min-width: 0;
}

.hero-title {
	font-size: 4.5rem;
	font-weight: 900;
	line-height: 1.08;
	margin-bottom: 1.2rem;
	letter-spacing: -2px;
	text-transform: uppercase;
	position: relative;
	-webkit-animation: heroFadeInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
	animation: heroFadeInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}
@-webkit-keyframes heroFadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes heroFadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-title span {
	display: block;
	position: relative;
	background: linear-gradient(to right, #fff 20%, rgba(255, 255, 255, 0.8));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.hero-title .accent {
	font-size: 5.2rem;
	margin: 0.3rem 0;
	background: linear-gradient(135deg, var(--primary) 30%, #ff6b6b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
	display: inline-block;
	-webkit-filter: drop-shadow(0 0 20px var(--primary-glow));
	filter: drop-shadow(0 0 20px var(--primary-glow));
}

.hero-title .accent::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -10px;
	right: -10px;
	height: 110%;
	background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 70%);
	transform: translateY(-50%) scale(0.8);
	-webkit-filter: blur(20px);
	filter: blur(20px);
	z-index: -1;
	opacity: 0.5;
}

.hero-title .accent::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, var(--primary), transparent);
	transform-origin: left;
	-webkit-animation: pulse 2s ease-in-out infinite;
	animation: pulse 2s ease-in-out infinite;
}

.hero-description {
	min-height: 0;
	/* background: rgba(20, 20, 20, 0.96); */
	/* padding: 2.2rem 2.2rem;
	border-radius: 22px; */
	font-size: 1.18rem;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	color: #fff;
	/* box-shadow: 0 4px 32px 0 #ff4b4b22; */
	text-align: left;
	line-height: 1.7;
	max-width: 700px;
	margin: 2.5rem 0 0 0;
	display: flex;
	align-items: flex-start;
	gap: 1.1rem;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	letter-spacing: 0.02em;
}

.hero-description strong {
	color: var(--text);
	font-weight: 500;
	background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-buttons {
	display: flex;
	gap: 1.1rem;
}

.hero-button {
	padding: 0.7rem 1.7rem;
	border-radius: 32px;
	font-size: 1.08rem;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: -0.2px;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	position: relative;
	overflow: hidden;
	min-width: 0;
	line-height: 1.1;
	box-shadow: none;
}
.hero-button i {
	font-size: 1.1em;
	margin-right: 0.3em;
}
.hero-button.primary {
	background: linear-gradient(135deg, #00c853, #00e676);
	color: #fff;
	border: none;
	box-shadow: none;
}
.hero-button.primary:hover {
	background: linear-gradient(135deg, #00e676, #00c853);
}
.hero-button.secondary {
	background: rgba(255, 255, 255, 0.07);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.13);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	box-shadow: none;
}
.hero-button.secondary:hover {
	background: rgba(255, 255, 255, 0.13);
	border-color: #00c853;
	color: #fff;
}
@media (max-width: 600px) {
	.hero-buttons {
		flex-direction: column;
		gap: 0.7rem;
	}
	.hero-button {
		width: 100%;
		justify-content: center;
	}
}

.hero-button.primary::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transform: translateX(-100%);
	transition: 0.5s;
}

.hero-button.primary:hover::before {
	transform: translateX(100%);
}

.hero-button.secondary::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transform: translateX(-100%);
	transition: 0.5s;
}

.hero-button.secondary:hover::before {
	transform: translateX(100%);
}

.hero-image {
	position: relative;
	-webkit-animation: float 6s ease-in-out infinite;
	animation: float 6s ease-in-out infinite;
}

.hero-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
	transition: var(--transition);
}

.hero-image::before {
	content: "";
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	border-radius: 30px;
	background: linear-gradient(135deg, var(--primary-glow), transparent);
	z-index: -1;
	-webkit-animation: pulse 3s ease-in-out infinite;
	animation: pulse 3s ease-in-out infinite;
}

.price-tag {
	position: absolute;
	bottom: 10px;
	left: 10px;
	background: linear-gradient(135deg, var(--primary), #ff6b6b);
	color: white;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.4rem;
	letter-spacing: -0.5px;
	box-shadow: 0 10px 25px var(--primary-glow);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	-webkit-animation: pulse 2s ease-in-out infinite;
	animation: pulse 2s ease-in-out infinite;
}

.price-tag::before {
	content: "";
	position: absolute;
	inset: -3px;
	border-radius: 50px;
	background: linear-gradient(135deg, var(--primary), transparent);
	z-index: -1;
	opacity: 0.5;
}

@media (max-width: 1200px) {
	.hero-title {
		font-size: 3.2rem;
	}
	.hero-title .accent {
		font-size: 3.7rem;
	}
}

@media (max-width: 992px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 4rem;
	}

	.hero-description {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-buttons {
		justify-content: center;
	}

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

	.hero-title .accent {
		font-size: 2.7rem;
	}

	.hero-image {
		max-width: 600px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.hero-title {
		font-size: 3.5rem;
	}

	.hero-description {
		font-size: 1.1rem;
		padding: 1.5rem;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-button {
		width: 100%;
		justify-content: center;
	}
}

.features {
	padding: var(--spacing-lg) 0;
	background: var(--surface);
}

.section-header {
	text-align: center;
	margin-bottom: var(--spacing-lg);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.section-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: var(--spacing-sm);
	letter-spacing: -0.5px;
	background: linear-gradient(45deg, var(--text) 30%, var(--primary) 50%, var(--text) 70%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% auto;
	-webkit-animation: gradient 3s ease infinite;
	animation: gradient 3s ease infinite;
}

@-webkit-keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.section-description {
	color: var(--text-secondary);
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-md);
}

.feature-card {
	background: var(--background);
	padding: var(--spacing-md);
	border-radius: var(--border-radius);
	text-align: center;
	transition: var(--transition);
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--primary), transparent);
	transform: translateX(-100%);
	transition: transform 0.5s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary);
	box-shadow: 0 10px 20px rgba(255, 30, 30, 0.1);
}

.feature-card:hover::before {
	transform: translateX(100%);
}

.feature-icon {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: var(--spacing-sm);
	transition: var(--transition);
}

.feature-card:hover .feature-icon {
	transform: scale(1.1);
}

.feature-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: var(--spacing-xs);
	color: var(--text);
}

.feature-description {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.6;
}

.menu {
	padding: var(--spacing-lg) 0;
	background: var(--background);
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--spacing-lg);
	margin-top: var(--spacing-lg);
}

.menu-category {
	background: var(--surface);
	padding: var(--spacing-md);
	border-radius: var(--border-radius);
}

.menu-category-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: var(--spacing-md);
	color: var(--primary);
}

.menu-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--spacing-sm);
	padding-bottom: var(--spacing-sm);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.menu-item-name {
	font-weight: 500;
}

.menu-item-price {
	font-weight: 600;
	color: var(--primary);
}

.cloud-club {
	padding: var(--spacing-lg) 0;
	background: linear-gradient(135deg, #111111 0%, #000000 100%);
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.cloud-club::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,30,30,0.05)"/></svg>')
		repeat;
	opacity: 0.5;
	-webkit-animation: backgroundMove 30s linear infinite;
	animation: backgroundMove 30s linear infinite;
}

@-webkit-keyframes backgroundMove {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(20px, 20px);
	}
}

@keyframes backgroundMove {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(20px, 20px);
	}
}

.cloud-club-content {
	/* max-width: 1200px; */
	margin: 0 auto;
	position: relative;
	z-index: 2;
	/* display: grid;
	grid-template-columns: 1fr 1fr; */
	/* gap: 4rem; */
	align-items: center;
	padding: 0 2rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.club-info {
	text-align: left;
	width: 100%;
}

.cloud-club-title {
	font-size: 5rem;
	font-weight: 800;
	background: linear-gradient(to right, #ff1e1e, #ff4b4b);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 2rem;
	line-height: 1;
	position: relative;
	text-align: center;
}

.cloud-club-title::after {
	content: "Premium";
	position: absolute;
	top: -1.5rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--text-secondary);
	-webkit-text-fill-color: var(--text-secondary);
}
.cloud-club .container {
	width: 100%;
}
.benefits-list {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	justify-content: space-between;
}

.benefit-item {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.05);
	width: 48%;
}

.benefit-item:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateX(10px);
}

.benefit-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 30, 30, 0.1);
	border-radius: 12px;
	margin-right: 1.5rem;
	color: var(--primary);
	font-size: 1.5rem;
}

.benefit-content {
	flex: 1;
}

.benefit-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: var(--text);
}

.benefit-description {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.4;
}

.club-visual {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.club-card {
	position: absolute;
	width: 300px;
	height: 400px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform-style: preserve-3d;
	transition: all 0.5s ease;
}

.club-card.premium {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-5deg);
	z-index: 2;
	background: linear-gradient(135deg, rgba(255, 30, 30, 0.1) 0%, rgba(255, 75, 75, 0.1) 100%);
}

.club-card.standard {
	top: 40%;
	left: 40%;
	transform: translate(-50%, -50%) rotate(5deg) scale(0.9);
	z-index: 1;
	-webkit-filter: brightness(0.7);
	filter: brightness(0.7);
}

.join-button {
	display: inline-block;
	padding: 1rem 3rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--text);
	background: linear-gradient(45deg, var(--primary), #ff4b4b);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	margin-top: 2rem;
	position: relative;
	overflow: hidden;
}

.join-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transform: translateX(-100%);
	transition: 0.5s;
}

.join-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(255, 30, 30, 0.2);
}

.join-button:hover::before {
	transform: translateX(100%);
}

@media (max-width: 1024px) {
	.cloud-club-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.club-visual {
		height: 300px;
		order: -1;
	}

	.cloud-club-title {
		font-size: 3.5rem;
	}

	.benefit-item {
		padding: 1rem;
	}

	.benefit-icon {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
}

@media (max-width: 768px) {
	.cloud-club {
		min-height: auto;
		padding: 4rem 0;
	}

	.cloud-club-title {
		font-size: 2.5rem;
	}

	.club-card {
		width: 260px;
		height: 340px;
	}
}

.particles {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 1;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--primary);
	border-radius: 50%;
	-webkit-animation: particleFloat 15s infinite linear;
	animation: particleFloat 15s infinite linear;
	opacity: 0.3;
}

@-webkit-keyframes particleFloat {
	0% {
		transform: translateY(0) translateX(0);
		opacity: 0;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		transform: translateY(-1000px) translateX(100px);
		opacity: 0;
	}
}

@keyframes particleFloat {
	0% {
		transform: translateY(0) translateX(0);
		opacity: 0;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		transform: translateY(-1000px) translateX(100px);
		opacity: 0;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-text h1 {
		font-size: 3rem;
	}

	.hero-buttons {
		justify-content: center;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.menu-grid {
		grid-template-columns: 1fr;
	}

	.contact-buttons {
		flex-direction: column;
	}

	.price-tag {
		position: static;
		display: inline-block;
		margin-bottom: var(--spacing-md);
	}
}

.footer {
	background: var(--surface);
	padding: var(--spacing-lg) 0;
	margin-top: var(--spacing-lg);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: var(--spacing-lg);
	border: none !important;
}

.footer-info {
	max-width: 300px;
}

.footer-info p {
	color: var(--text-secondary);
	margin-top: var(--spacing-sm);
}

.footer-links,
.footer-contact {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
}

.footer-links h4,
.footer-contact h4 {
	color: var(--text);
	margin-bottom: var(--spacing-xs);
}

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--primary);
}

.footer-contact p {
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
}

.footer-social {
	display: flex;
	gap: var(--spacing-sm);
	margin-top: var(--spacing-xs);
}

.footer-social .btn {
	padding: 0.5rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-bottom {
	padding-top: var(--spacing-md);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: var(--text-secondary);
}

@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-info {
		max-width: 100%;
	}

	.footer-links,
	.footer-contact {
		align-items: center;
	}

	.footer-social {
		justify-content: center;
	}
}

.delivery-banner {
	background: var(--primary);
	color: var(--text);
	padding: 1rem;
	border-radius: 12px;
	text-align: center;
	font-weight: 500;
	font-size: 1.1rem;
	margin: 3rem auto;
	max-width: 300px;
}

.pricing {
	padding: var(--spacing-xl) 0;
	background: linear-gradient(135deg, #111111 0%, #000000 100%);
	position: relative;
	overflow: hidden;
}

.pricing::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.05)"/></svg>')
		repeat;
	opacity: 0.3;
	-webkit-animation: backgroundMove 20s linear infinite;
	animation: backgroundMove 20s linear infinite;
}

.pricing-title {
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
}

.pricing-title h2 {
	font-size: 4.5rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	background: linear-gradient(45deg, #ffffff, rgba(255, 255, 255, 0.8));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	letter-spacing: -1px;
	line-height: 1.1;
}

.pricing-title h2 span {
	background: linear-gradient(45deg, #ff4b4b, #ff0000);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
	display: inline-block;
}

.pricing-description {
	font-size: 1.25rem;
	color: var(--text-secondary);
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	line-height: 1.7;
	font-weight: 400;
	letter-spacing: -0.2px;
}

.pricing-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
	position: relative;
	z-index: 1;
}

.pricing-card {
	background: rgba(20, 20, 20, 0.92);
	border-radius: 18px;
	padding: 2.2rem 1.5rem 2rem 1.5rem;
	border: 1.5px solid rgba(255, 255, 255, 0.13);
	box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	min-width: 0;
	transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
	position: relative;
}
.pricing-card.featured {
	border: 1.5px solid #ff4b4b;
	box-shadow: 0 4px 32px 0 rgba(255, 75, 75, 0.1), 0 2px 16px 0 rgba(255, 255, 255, 0.1);
}
.pricing-card:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 0 8px 32px 0 rgba(255, 75, 75, 0.13);
	border-color: #ff4b4b;
	z-index: 2;
}
.pricing-card-header {
	margin-bottom: 1.7rem;
	position: relative;
	text-align: center;
}
.pricing-card-title {
	font-size: 2.2rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.5px;
	margin-bottom: 0.2rem;
	background: none;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
}
.pricing-card-price {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 0.4rem;
	margin-bottom: 0.2rem;
}
.pricing-card-price-prefix,
.pricing-card-price-currency {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 500;
}
.pricing-card-price-amount {
	font-size: 2.5rem;
	font-weight: 900;
	background: linear-gradient(90deg, #ff4b4b 0%, #fff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	letter-spacing: -1px;
}
.pricing-features {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}
.pricing-feature {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 1rem 1.2rem;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 10px;
	margin-bottom: 0;
	box-shadow: none;
}
.pricing-feature-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pricing-feature-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	letter-spacing: -0.2px;
}
.pricing-feature-price {
	font-size: 1.1rem;
	font-weight: 700;
	background: linear-gradient(90deg, #ff4b4b 0%, #fff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.pricing-feature-description {
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: -0.1px;
}
@media (max-width: 992px) {
	.pricing-cards {
		grid-template-columns: 1fr;
		gap: 1.2rem;
	}
	.pricing-card {
		padding: 1.5rem 0.7rem 1.2rem 0.7rem;
	}
	.pricing-card-title {
		font-size: 1.5rem;
	}
	.pricing-card-price-amount {
		font-size: 1.5rem;
	}
}

.free-delivery {
	text-align: center;
	margin-top: 3rem;
	position: relative;
	z-index: 1;
}

.free-delivery-button {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 2rem;
	background: linear-gradient(45deg, #ff4b4b, #ff0000);
	color: white;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.free-delivery-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transform: translateX(-100%);
	transition: 0.5s;
}

.free-delivery-button:hover::before {
	transform: translateX(100%);
}

.free-delivery-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

@media (max-width: 992px) {
	.pricing-cards {
		grid-template-columns: 1fr;
		gap: 1.2rem;
	}

	.pricing-card {
		padding: 1.2rem 0.7rem 1.1rem 0.7rem;
	}

	.pricing-card-title {
		font-size: 1.5rem;
	}

	.pricing-card-price-amount {
		font-size: 1.5rem;
	}
}

@media (max-width: 768px) {
	.pricing-cards {
		grid-template-columns: 1fr;
	}

	.pricing-card {
		max-width: 400px;
		margin: 0 auto;
	}

	.pricing-card-title {
		font-size: 2.5rem;
	}

	.pricing-card-price-amount {
		font-size: 3rem;
	}
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1001;
	overflow-y: auto;
}

.modal-content {
	position: relative;
	background: var(--surface);
	margin: 50px auto;
	padding: 2rem;
	width: 90%;
	max-width: 1000px;
	border-radius: var(--border-radius);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
	position: absolute;
	right: 1.5rem;
	top: 1.5rem;
	font-size: 2rem;
	cursor: pointer;
	color: var(--text-secondary);
	transition: var(--transition);
}

.close-modal:hover {
	color: var(--primary);
}

.modal-content h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
	color: var(--primary);
}

.loyalty-tiers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.loyalty-tier {
	background: var(--background);
	padding: 2rem;
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: var(--transition);
}

.loyalty-tier:hover {
	transform: translateY(-5px);
	border-color: var(--primary);
}

.tier-header {
	text-align: center;
	margin-bottom: 1.5rem;
}

.tier-header i {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 1rem;
}

.tier-header h3 {
	font-size: 1.5rem;
	color: var(--text);
}

.loyalty-tier ul {
	list-style: none;
	padding: 0;
}

.loyalty-tier li {
	color: var(--text-secondary);
	margin-bottom: 0.75rem;
	padding-left: 1.5rem;
	position: relative;
}

.loyalty-tier li::before {
	content: "✓";
	color: var(--primary);
	position: absolute;
	left: 0;
}

.join-form {
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.join-form h3 {
	margin-bottom: 1.5rem;
	font-size: 1.75rem;
}

.join-form form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.join-form input {
	padding: 1rem;
	border-radius: var(--border-radius);
	background: var(--background);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text);
	font-size: 1rem;
}

.join-form input:focus {
	outline: none;
	border-color: var(--primary);
}

.join-form button {
	margin-top: 1rem;
}

@media (max-width: 768px) {
	.loyalty-tiers {
		grid-template-columns: 1fr;
	}

	.modal-content {
		margin: 20px;
		padding: 1.5rem;
		width: auto;
	}

	.modal-content h2 {
		font-size: 2rem;
	}
}

.contact-link {
	color: var(--text);
	text-decoration: none;
	transition: var(--transition);
}

.contact-link:hover {
	color: var(--primary);
}

.cta {
	padding: var(--spacing-lg) 0;
	background: linear-gradient(135deg, #111111 0%, #000000 100%);
	position: relative;
	overflow: hidden;
	min-height: 400px;
	display: flex;
	align-items: center;
}

.cta::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.05)"/></svg>')
		repeat;
	opacity: 0.3;
	-webkit-animation: backgroundMove 20s linear infinite;
	animation: backgroundMove 20s linear infinite;
}

.cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.cta-title {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: linear-gradient(45deg, #ffffff, rgba(255, 255, 255, 0.8));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.1;
}

.cta-description {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
}

.contact-buttons {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
}

.contact-button {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.2rem 2.5rem;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.contact-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transform: translateX(-100%);
	transition: 0.5s;
}

.contact-button:hover::before {
	transform: translateX(100%);
}

.contact-button.telegram {
	background: linear-gradient(45deg, #229ed9, #1c93cf);
	color: white;
	box-shadow: 0 5px 15px rgba(34, 158, 217, 0.3);
}

.contact-button.telegram:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(34, 158, 217, 0.4);
}

.contact-button.call {
	background: linear-gradient(45deg, #00c853, #00e676);
	color: white;
	box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}

.contact-button.call:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
}

.footer {
	background: var(--surface);
	padding: var(--spacing-lg) 0;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: var(--spacing-lg);
	position: relative;
}

.footer-info {
	max-width: 300px;
}

.footer-logo {
	display: inline-block;
	text-align: left;
	line-height: 1.1;
	font-family: "Montserrat", "Inter", Arial, sans-serif;
	font-weight: 800;
	letter-spacing: -1.5px;
	background: none;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
	color: var(--text);
	position: relative;
}

.footer-logo .logo-main {
	font-size: 1.5rem;
}

.footer-logo .logo-sub {
	font-size: 1rem;
}

.footer-logo .logo-accent {
	height: 4px;
}

.footer-logo .logo-sub-accent {
	height: 2px;
}

.footer-description {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-top: 1rem;
}

.footer-section h4 {
	font-size: 1.2rem;
	color: var(--text);
	margin-bottom: 1.5rem;
	position: relative;
	display: inline-block;
}

.footer-section h4::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--primary);
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-link {
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-link:hover {
	color: var(--primary);
	transform: translateX(5px);
}

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

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--text-secondary);
}

.contact-item i {
	color: var(--primary);
	font-size: 1.2rem;
}

.social-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.social-button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.social-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transform: translateX(-100%);
	transition: 0.5s;
}

.social-button:hover::before {
	transform: translateX(100%);
}

.social-button:hover {
	transform: translateY(-3px);
}

.social-button.telegram {
	background: linear-gradient(45deg, #229ed9, #1c93cf);
}

.social-button.instagram {
	background: linear-gradient(45deg, #833ab4, #fd1d1d);
}

@media (max-width: 768px) {
	.cta-title {
		font-size: 2.5rem;
	}

	.contact-buttons {
		flex-direction: column;
		gap: 1rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.footer-info {
		max-width: 100%;
	}

	.footer-section h4::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-links {
		align-items: center;
	}

	.contact-item {
		justify-content: center;
	}

	.social-buttons {
		justify-content: center;
	}
}

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

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

@-webkit-keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.05);
		opacity: 0.8;
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.05);
		opacity: 0.8;
	}
}

@-webkit-keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.hero-title-underline {
	width: 140px;
	height: 5px;
	margin: -0.7rem 0 1.5rem 0;
	border-radius: 8px;
	background: linear-gradient(90deg, #ff4b4b 0%, #fff 100%);
	box-shadow: 0 0 24px 2px rgba(255, 75, 75, 0.18), 0 2px 12px 0 rgba(255, 255, 255, 0.1);
	-webkit-animation: accent-glow 2.5s ease-in-out infinite alternate;
	animation: accent-glow 2.5s ease-in-out infinite alternate;
}
.hero-description.animated-fadein {
	opacity: 0;
	-webkit-animation: fadeInUp 1.2s 0.2s forwards;
	animation: fadeInUp 1.2s 0.2s forwards;
}
@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.compact-navbar {
	min-height: 56px;
	padding: 0 !important;
	gap: 0;
}
.nav-group {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}
.nav-links {
	gap: 1.2rem;
}
.nav-link {
	font-size: 1rem;
	padding: 0.2rem 0;
}
.nav-button.compact {
	padding: 0.6rem 1.3rem;
	font-size: 1rem;
	border-radius: 30px;
	margin-left: 0.7rem;
}
.logo.compact-logo {
	padding: 0.2rem 0.7rem;
	min-width: 170px;
	text-align: right;
}
.logo.compact-logo .logo-main {
	font-size: 1.3rem;
}
.logo.compact-logo .logo-sub {
	font-size: 0.8rem;
}
.logo.compact-logo .logo-accent {
	height: 3px;
}
.logo.compact-logo .logo-sub-accent {
	height: 1.5px;
}
.navbar {
	padding: 0.5rem 0 !important;
}
@media (max-width: 992px) {
	.compact-navbar {
		flex-direction: column-reverse;
		align-items: flex-end;
	}
	.logo.compact-logo {
		text-align: right;
		margin-bottom: 0.5rem;
	}
	.nav-group {
		width: 100%;
		justify-content: flex-start;
	}
}

.modern-logo {
	font-family: "Inter", "Montserrat", Arial, sans-serif !important;
	font-weight: 900;
	letter-spacing: 0.5px;
}
.modern-logo .logo-main {
	font-family: "Inter", "Montserrat", Arial, sans-serif !important;
	font-weight: 900;
	letter-spacing: 0.5px;
}
.modern-logo .logo-sub {
	font-family: "Inter", "Montserrat", Arial, sans-serif !important;
	font-weight: 700;
}
.nav-button.call-green {
	background: linear-gradient(135deg, #00c853, #00e676);
	color: #fff;
	box-shadow: 0 5px 15px rgba(0, 200, 83, 0.18);
}
.nav-button.call-green:hover {
	background: linear-gradient(135deg, #00e676, #00c853);
	box-shadow: 0 8px 25px rgba(0, 200, 83, 0.28);
}
.nav-link.soft-highlight {
	color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.04);
	border-radius: 6px;
	padding: 0.2rem 0.9rem;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
	font-weight: 600;
}
.nav-link.soft-highlight:hover,
.nav-link.soft-highlight:focus {
	color: #fff;
	background: rgba(0, 200, 83, 0.13);
	box-shadow: 0 2px 8px 0 rgba(0, 200, 83, 0.08);
}
.nav-links {
	gap: 1.1rem;
}
.nav-group {
	gap: 1.1rem;
}
.logo.compact-logo {
	min-width: 170px;
	text-align: left;
	padding-left: 0.2rem;
}
@media (max-width: 992px) {
	.compact-navbar {
		flex-direction: column;
		align-items: flex-start;
	}
	.logo.compact-logo {
		text-align: left;
		margin-bottom: 0.5rem;
	}
	.nav-group {
		width: 100%;
		justify-content: flex-start;
	}
}

.clean-navbar-logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 0.1rem 0.7rem 0.1rem 0;
	min-width: 0;
	background: none !important;
	box-shadow: none !important;
}
.clean-navbar-logo .logo-main {
	font-family: "Inter", "Montserrat", Arial, sans-serif !important;
	font-weight: 900;
	font-size: 1.25rem;
	color: #fff;
	background: none !important;
	-webkit-background-clip: unset !important;
	-webkit-text-fill-color: unset !important;
	letter-spacing: 0.5px;
	line-height: 1.1;
	margin-bottom: 0.1rem;
}
.clean-navbar-logo .logo-sub {
	font-family: "Inter", "Montserrat", Arial, sans-serif !important;
	font-weight: 600;
	font-size: 0.85rem;
	color: #bdbdbd;
	background: none !important;
	-webkit-background-clip: unset !important;
	-webkit-text-fill-color: unset !important;
	letter-spacing: 0.2px;
	margin-left: 1px;
	margin-top: 0;
}
.clean-navbar-logo .logo-accent,
.clean-navbar-logo .logo-sub-accent {
	display: none !important;
}

.creative-navbar-logo {
	display: flex;
	align-items: center;
	padding: 0.1rem 0.7rem 0.1rem 0;
	min-width: 0;
	background: none !important;
	box-shadow: none !important;
}
.creative-logo-text {
	font-family: "Montserrat", "Inter", Arial, sans-serif !important;
	font-weight: 900;
	font-size: 1.35rem;
	letter-spacing: 0.18em;
	color: #fff;
	background: linear-gradient(90deg, #ff4b4b 0%, #fff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
	line-height: 1.1;
	padding: 0.1rem 0.2rem;
	border-radius: 6px;
	transition: background 0.3s;
	box-shadow: none;
	display: inline-block;
}
.creative-logo-text:hover {
	background: linear-gradient(90deg, #fff 0%, #ff4b4b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.creative-logo-sub {
	display: block;
	font-family: "Montserrat", "Inter", Arial, sans-serif !important;
	font-weight: 600;
	font-size: 0.85rem;
	color: #bdbdbd;
	letter-spacing: 0.18em;
	margin-top: 0.1rem;
	margin-left: 2px;
	background: none !important;
	-webkit-background-clip: unset !important;
	-webkit-text-fill-color: unset !important;
}
.creative-logo-text {
	border-bottom: none !important;
}

.premium-navbar-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0.1rem 0.7rem 0.1rem 0;
	min-width: 0;
	background: none !important;
	box-shadow: none !important;
}
.premium-logo-text {
	font-family: "Inter", Arial, sans-serif !important;
	font-weight: 900;
	font-size: 1.35rem;
	letter-spacing: 0.18em;
	color: #fff;
	background: linear-gradient(90deg, #ff4b4b 0%, #fff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
	line-height: 1.1;
	padding: 0.1rem 0.2rem;
	border-radius: 6px;
	transition: background 0.3s;
	box-shadow: none;
	display: inline-block;
	border-bottom: none !important;
}
.premium-logo-sub {
	display: block;
	font-family: "Inter", Arial, sans-serif !important;
	font-weight: 600;
	font-size: 0.85rem;
	color: #bdbdbd;
	letter-spacing: 0.18em;
	margin-top: 0.1rem;
	margin-left: 2px;
	background: none !important;
	-webkit-background-clip: unset !important;
	-webkit-text-fill-color: unset !important;
	border-bottom: none !important;
	text-decoration: none !important;
}

.new-logo-premium {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	padding: 0.2rem 0.7rem 0.2rem 0;
	background: none !important;
	box-shadow: none !important;
	text-decoration: none !important;
}
.logo-monogram {
	display: flex;
	align-items: center;
	justify-content: center;
}
.mono-circle {
	width: 2.8rem;
	height: 2.8rem;
	font-size: 1.25rem;
	position: relative;
}
.mono-r {
	color: #ff4b4b;
	font-size: 1.18em;
	font-weight: 900;
	position: absolute;
	left: 0.38em;
	top: 0.18em;
	z-index: 2;
	transform: rotate(-8deg);
}
.mono-h {
	color: #fff;
	font-size: 1.18em;
	font-weight: 900;
	position: absolute;
	right: 0.38em;
	bottom: 0.18em;
	z-index: 2;
	transform: rotate(7deg);
}
.logo-title {
	font-size: 1.21rem;
}
.logo-text-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	line-height: 1.1;
}
.logo-subtitle {
	font-family: "Inter", Arial, sans-serif;
	font-weight: 600;
	font-size: 0.82rem;
	color: #bdbdbd;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
@media (max-width: 600px) {
	.new-logo-premium {
		gap: 0.5rem;
	}
	.mono-circle {
		width: 1.7rem;
		height: 1.7rem;
		font-size: 0.9rem;
	}
	.logo-title {
		font-size: 0.95rem;
	}
	.logo-subtitle {
		font-size: 0.7rem;
	}
}

.mixes-button,
.mixes-menu-label {
	font-family: "Inter", "Montserrat", Arial, sans-serif !important;
	font-weight: 800;
	font-size: 1.18rem;
	padding: 1.1rem 3.5rem;
	border-radius: 36px;
	background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
	box-shadow: 0 2px 16px 0 rgba(37, 117, 252, 0.13);
	letter-spacing: 0.08em;
	margin: 0 auto;
	display: block;
	width: 340px;
	max-width: 90vw;
	text-align: center;
}

.mixes-button:hover {
	background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
	color: #fff;
	transform: translateY(-2px) scale(1.03);
	box-shadow: 0 6px 24px 0 rgba(37, 117, 252, 0.18);
}

.mixes-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	z-index: 2000;
	align-items: center;
	justify-content: center;
}
.mixes-modal.open {
	display: flex;
}
.mixes-modal-content {
	position: relative;
	background: #18181c;
	border-radius: 28px;
	padding: 2.5rem 2.5rem 2rem 2.5rem;
	min-width: 370px;
	min-height: 340px;
	box-shadow: 0 8px 40px 0 rgba(37, 117, 252, 0.18), 0 2px 24px 0 rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	z-index: 2;
	border: 2.5px solid rgba(106, 17, 203, 0.13);
}
.menu-modal-title {
	font-family: "Inter", "Montserrat", Arial, sans-serif;
	font-size: 1.6rem;
	font-weight: 900;
	color: #fff;
	letter-spacing: 0.09em;
	margin-bottom: 1.1rem;
	text-align: center;
	display: flex;
	align-items: center;
	gap: 0.7rem;
}
.menu-modal-title::before {
	content: "\1F9EA"; /* 🧪 */
	font-size: 1.3em;
	display: inline-block;
	vertical-align: middle;
	opacity: 0.85;
}
.menu-modal-divider {
	width: 80%;
	height: 2.5px;
	background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
	border-radius: 2px;
	margin: 0 auto 1.2rem auto;
	opacity: 0.32;
	box-shadow: 0 0 8px 0 #6a11cb44;
}
.menu-modal-list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	align-items: center;
	margin-bottom: 1.2rem;
}
.menu-modal-item {
	width: 92%;
	min-height: 54px;
	width: 90%;
	min-height: 48px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Inter", "Montserrat", Arial, sans-serif;
	font-size: 1.08rem;
	color: #bdbdbd;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-align: center;
	opacity: 0.7;
	border: 1.5px dashed #6a11cb33;
}
.menu-modal-soon {
	color: #fff;
	font-size: 1.18rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-align: center;
	margin-top: 1.5rem;
	opacity: 0.85;
}
@media (max-width: 600px) {
	.mixes-modal-content {
		padding: 1.2rem 0.5rem 1.2rem 0.5rem;
		min-width: 0;
	}
	.mixes-blur-menu {
		width: 90vw;
		min-width: 0;
		height: 120px;
	}
}

.mixes-menu-toggle:checked ~ .mixes-modal.pure-css-modal {
	display: flex;
}
.mixes-modal.pure-css-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	z-index: 2000;
	align-items: center;
	justify-content: center;
}
.mixes-modal-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: transparent;
	cursor: pointer;
	z-index: 1;
}
.pure-css-modal-content {
	position: relative;
	background: rgba(30, 30, 30, 0.7);
	border-radius: 24px;
	padding: 2.5rem 2.5rem 2rem 2.5rem;
	min-width: 340px;
	min-height: 320px;
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	z-index: 2;
}
.pure-css-close {
	position: absolute;
	right: 1.5rem;
	top: 1.2rem;
	font-size: 2rem;
	cursor: pointer;
	color: #fff;
	opacity: 0.7;
	transition: opacity 0.2s;
	z-index: 10;
}
.pure-css-close:hover {
	opacity: 1;
}

.club-stamps {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 1.1rem;
	margin-top: 2.5rem;
	margin-bottom: 0.5rem;
}
.stamp {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.13);
	border: 2.5px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.13);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: border 0.3s, background 0.3s;
}
.stamp.winner {
	background: linear-gradient(135deg, #ff4b4b 60%, #fff 100%);
	border: 2.5px solid #fff;
	box-shadow: 0 0 24px 4px #ff4b4b88, 0 2px 12px 0 #fff3;
	-webkit-animation: winnerPulse 1.2s infinite alternate;
	animation: winnerPulse 1.2s infinite alternate;
}
@-webkit-keyframes winnerPulse {
	0% {
		box-shadow: 0 0 24px 4px #ff4b4b88, 0 2px 12px 0 #fff3;
	}
	100% {
		box-shadow: 0 0 36px 8px #ff4b4bcc, 0 2px 24px 0 #fff5;
	}
}
@keyframes winnerPulse {
	0% {
		box-shadow: 0 0 24px 4px #ff4b4b88, 0 2px 12px 0 #fff3;
	}
	100% {
		box-shadow: 0 0 36px 8px #ff4b4bcc, 0 2px 24px 0 #fff5;
	}
}
.firework {
	position: absolute;
	left: 50%;
	top: -30px;
	width: 6px;
	height: 28px;
	background: none;
	pointer-events: none;
	z-index: 2;
	-webkit-animation: fireworkUp 1.1s ease-in-out infinite;
	animation: fireworkUp 1.1s ease-in-out infinite;
}
.firework:nth-child(2) {
	left: 35%;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
	transform: rotate(-18deg);
}
.firework:nth-child(3) {
	left: 65%;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	transform: rotate(18deg);
}
.firework:after {
	content: "";
	display: block;
	width: 6px;
	height: 18px;
	border-radius: 3px;
	background: linear-gradient(180deg, #fff 0%, #ff4b4b 100%);
	box-shadow: 0 0 8px 2px #fff8, 0 2px 8px 0 #ff4b4b88;
	opacity: 0.85;
}
@-webkit-keyframes fireworkUp {
	0% {
		opacity: 0;
		transform: translateY(0) scaleY(0.7);
	}
	60% {
		opacity: 1;
		transform: translateY(-18px) scaleY(1.1);
	}
	80% {
		opacity: 1;
		transform: translateY(-28px) scaleY(1.2);
	}
	100% {
		opacity: 0;
		transform: translateY(-38px) scaleY(0.7);
	}
}
@keyframes fireworkUp {
	0% {
		opacity: 0;
		transform: translateY(0) scaleY(0.7);
	}
	60% {
		opacity: 1;
		transform: translateY(-18px) scaleY(1.1);
	}
	80% {
		opacity: 1;
		transform: translateY(-28px) scaleY(1.2);
	}
	100% {
		opacity: 0;
		transform: translateY(-38px) scaleY(0.7);
	}
}

.loyalty-card {
	background: linear-gradient(135deg, #18181c 60%, #23233a 100%);
	border-radius: 22px;
	border: 2.5px solid rgba(255, 255, 255, 0.13);
	box-shadow: 0 8px 40px 0 rgba(37, 117, 252, 0.1), 0 2px 24px 0 rgba(0, 0, 0, 0.25);
	position: relative;
	overflow: hidden;
	min-width: 340px;
	min-height: 220px;
	padding: 2.2rem 2.2rem 1.7rem 2.2rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.loyalty-card-bg {
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg width="120" height="60" viewBox="0 0 120 60" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 60 Q60 0 120 60" stroke="%23fff" stroke-opacity="0.04" stroke-width="2" fill="none"/><path d="M0 0 Q60 60 120 0" stroke="%23fff" stroke-opacity="0.04" stroke-width="2" fill="none"/></svg>')
		repeat;
	opacity: 0.7;
	z-index: 0;
	pointer-events: none;
}
.loyalty-card-header marble-header {
	margin-bottom: 1.2rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.loyalty-card-title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.1rem;
}
.loyalty-stamps {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 1.1rem;
	margin-top: 1.2rem;
	margin-bottom: 0.5rem;
	z-index: 2;
	width: 100%;
}
.loyalty-stamp {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: border 0.3s, background 0.3s;
}
.loyalty-stamp svg {
	display: block;
}
.loyalty-stamp.winner svg ellipse {
	fill: #ff4b4b;
	stroke: #fff;
	-webkit-filter: drop-shadow(0 0 12px #ff4b4b88);
	filter: drop-shadow(0 0 12px #ff4b4b88);
}
.loyalty-stamp.winner {
	-webkit-animation: winnerPulse 1.2s infinite alternate;
	animation: winnerPulse 1.2s infinite alternate;
}
@keyframes winnerPulse {
	0% {
		-webkit-filter: drop-shadow(0 0 12px #ff4b4b88);
		filter: drop-shadow(0 0 12px #ff4b4b88);
	}
	100% {
		-webkit-filter: drop-shadow(0 0 24px #ff4b4bcc);
		filter: drop-shadow(0 0 24px #ff4b4bcc);
	}
}
.firework {
	position: absolute;
	left: 50%;
	top: -30px;
	width: 6px;
	height: 28px;
	background: none;
	pointer-events: none;
	z-index: 2;
	-webkit-animation: fireworkUp 1.1s ease-in-out infinite;
	animation: fireworkUp 1.1s ease-in-out infinite;
}
.firework:nth-child(2) {
	left: 35%;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
	transform: rotate(-18deg);
}
.firework:nth-child(3) {
	left: 65%;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	transform: rotate(18deg);
}
.firework:after {
	content: "";
	display: block;
	width: 6px;
	height: 18px;
	border-radius: 3px;
	background: linear-gradient(180deg, #fff 0%, #ff4b4b 100%);
	box-shadow: 0 0 8px 2px #fff8, 0 2px 8px 0 #ff4b4b88;
	opacity: 0.85;
}
@keyframes fireworkUp {
	0% {
		opacity: 0;
		transform: translateY(0) scaleY(0.7);
	}
	60% {
		opacity: 1;
		transform: translateY(-18px) scaleY(1.1);
	}
	80% {
		opacity: 1;
		transform: translateY(-28px) scaleY(1.2);
	}
	100% {
		opacity: 0;
		transform: translateY(-38px) scaleY(0.7);
	}
}

.loyalty-card.green-gold {
	background: linear-gradient(135deg, #0d3c2e 60%, #1a5c4a 100%) !important;
	border: 2.5px solid #ffd700 !important;
	box-shadow: 0 8px 40px 0 #0d3c2e44, 0 2px 24px 0 #ffd70022;
}
.loyalty-card-bg.green-gold-bg {
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg width="180" height="90" viewBox="0 0 180 90" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 90 Q90 0 180 90" stroke="%23FFD700" stroke-opacity="0.08" stroke-width="2" fill="none"/><path d="M0 0 Q90 90 180 0" stroke="%23FFD700" stroke-opacity="0.08" stroke-width="2" fill="none"/></svg>')
		repeat;
	opacity: 0.7;
	z-index: 0;
	pointer-events: none;
}
.loyalty-stamps.gold .loyalty-stamp svg ellipse,
.loyalty-stamps.gold .loyalty-stamp svg path {
	stroke: #ffd700 !important;
}
.loyalty-stamp.gold svg ellipse {
	stroke: #ffd700 !important;
}
.loyalty-stamp.gold svg path {
	stroke: #ffd700 !important;
}
.loyalty-stamp.winner.gold svg ellipse {
	fill: #ffd700 !important;
	stroke: #fff !important;
	-webkit-filter: drop-shadow(0 0 12px #ffd70088);
	filter: drop-shadow(0 0 12px #ffd70088);
}
.loyalty-stamp.winner.gold {
	-webkit-animation: winnerPulseGold 1.2s infinite alternate;
	animation: winnerPulseGold 1.2s infinite alternate;
}
@-webkit-keyframes winnerPulseGold {
	0% {
		-webkit-filter: drop-shadow(0 0 12px #ffd70088);
		filter: drop-shadow(0 0 12px #ffd70088);
	}
	100% {
		-webkit-filter: drop-shadow(0 0 24px #ffd700cc);
		filter: drop-shadow(0 0 24px #ffd700cc);
	}
}
@keyframes winnerPulseGold {
	0% {
		-webkit-filter: drop-shadow(0 0 12px #ffd70088);
		filter: drop-shadow(0 0 12px #ffd70088);
	}
	100% {
		-webkit-filter: drop-shadow(0 0 24px #ffd700cc);
		filter: drop-shadow(0 0 24px #ffd700cc);
	}
}
.loyalty-stamp-row {
	display: flex;
	gap: 1.7rem;
	justify-content: center;
	margin-bottom: 0.7rem;
}
.loyalty-stamp {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: border 0.3s, background 0.3s;
	width: 54px;
	height: 54px;
}
.loyalty-stamp svg {
	display: block;
	width: 48px;
	height: 48px;
}
.loyalty-stamp.winner.gold {
	-webkit-animation: winnerPulseGold 1.2s infinite alternate;
	animation: winnerPulseGold 1.2s infinite alternate;
}
.stamp-effect {
	position: relative;
	box-shadow: 0 0 24px 6px #ffd70088, 0 2px 12px 0 #fff3;
}
.stamp-mark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-12deg);
	font-size: 2.2rem;
	color: #d32f2f;
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 900;
	text-shadow: 0 2px 8px #fff, 0 0 8px #ffd700;
	pointer-events: none;
	opacity: 0.92;
	letter-spacing: 0.1em;
}
.loyalty-name-row {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	margin-top: 1.2rem;
	width: 100%;
	z-index: 2;
}
.loyalty-name-label {
	font-family: "Montserrat", "Inter", Arial, sans-serif;
	font-size: 1.05rem;
	color: #ffd700;
	letter-spacing: 0.13em;
	font-weight: 700;
	margin-right: 0.3rem;
}
.loyalty-name-line {
	flex: 1;
	border-bottom: 2px solid #ffd700;
	height: 1.2em;
	margin-left: 0.2rem;
}

.marble-black {
	background: #18181c !important;
	border: 2.5px solid #ffd700 !important;
	box-shadow: 0 8px 40px 0 #18181c88, 0 2px 24px 0 #ffd70022;
	position: relative;
	overflow: hidden;
	min-width: 340px;
	min-height: 220px;
	padding: 2.2rem 2.2rem 1.7rem 2.2rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.marble-black-bg {
	position: absolute;
	inset: 0;
	background: url("https://www.transparenttextures.com/patterns/black-marble.png"),
		linear-gradient(135deg, #18181c 60%, #232323 100%);
	opacity: 0.85;
	z-index: 0;
	pointer-events: none;
}
.marble-header {
	z-index: 2;
	margin-bottom: 1.7rem;
	margin-top: 0.2rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.marble-logo-title {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 1.5rem;
	font-weight: 900;
	color: #ffd700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 0.1rem;
}
.marble-logo-sub {
	font-family: "Dancing Script", cursive, Arial, sans-serif;
	font-size: 1.25rem;
	color: #ffd700;
	font-style: italic;
	letter-spacing: 0.09em;
	margin-left: 2px;
	margin-bottom: 0.7rem;
}
.marble-stamps {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	align-items: center;
	width: 100%;
	z-index: 2;
}
.marble-stamp-row {
	display: flex;
	gap: 1.1rem;
	justify-content: center;
	margin-bottom: 0.1rem;
}
.marble-stamp {
	width: 44px;
	height: 44px;
	border-radius: 9px;
	border: 2.5px solid #ffd700;
	background: rgba(255, 255, 255, 0.07);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #ffd700;
	box-shadow: 0 2px 8px 0 #ffd70022;
	position: relative;
	transition: border 0.3s, background 0.3s;
}
.marble-stamp.winner {
	background: #ffd700;
	color: #18181c;
	border: 2.5px solid #ffd700;
	box-shadow: 0 0 24px 4px #ffd70088, 0 2px 12px 0 #fff3;
	font-weight: 900;
	font-size: 1.7rem;
}
.marble-percent {
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 900;
	font-size: 1.3em;
	color: #18181c;
	letter-spacing: 0.05em;
}
.marble-contacts {
	display: flex;
	flex-direction: row;
	gap: 1.2rem;
	margin-top: 1.7rem;
	width: 100%;
	font-size: 1.01rem;
	color: #ffd700;
	font-family: "Montserrat", Arial, sans-serif;
	justify-content: space-between;
	z-index: 2;
}
.marble-contacts i {
	margin-right: 0.4em;
	color: #ffd700;
}

.marble-loyalty-title {
	font-family: "Dancing Script", cursive, Arial, sans-serif;
	font-size: 1.25rem;
	color: #ffd700;
	font-style: italic;
	letter-spacing: 0.09em;
	margin-left: 2px;
	margin-bottom: 0.7rem;
	margin-top: 0.2rem;
	display: block;
}
.marble-stamp.winner {
	background: #18181c;
	color: #27e36a;
	border: 2.5px solid #27e36a;
	box-shadow: 0 0 24px 4px #27e36a88, 0 2px 12px 0 #fff3;
	font-weight: 900;
	font-size: 2.1rem;
}
.marble-check {
	font-size: 2.1rem;
	color: #27e36a;
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 900;
	text-shadow: 0 2px 8px #fff, 0 0 8px #27e36a;
	pointer-events: none;
	opacity: 0.92;
	letter-spacing: 0.1em;
}
.marble-contacts {
	display: none !important;
}

.hero-image-large {
	flex: 1 1 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	max-width: 50vw;
}
.hero-photo-large {
	width: 100%;
	height: auto;
	border-radius: 40px;
	box-shadow: 0 8px 40px #000a;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
}
@media (max-width: 900px) {
	.hero-content {
		flex-direction: column;
		gap: 2vw;
	}
	.hero-image-large {
		max-width: 100vw;
		width: 100%;
	}
	.hero-photo-large {
		width: 100%;
		max-width: 100vw;
		border-radius: 24px;
	}
}

.gradient-animated-text {
	background: linear-gradient(90deg, #ff8686, #fff 60%, #ff8686 100%);
	background-size: 300% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	-webkit-animation: gradient-move 3.5s linear infinite;
	animation: gradient-move 3.5s linear infinite;
	text-shadow: 0 2px 12px #fff4, 0 1px 0 #fff2;
	font-weight: 600;
}
@-webkit-keyframes gradient-move {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@keyframes gradient-move {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.neon-blink {
	color: #ff4b4b;
	text-shadow: 0 0 8px #ff4b4b, 0 0 24px #ff4b4b, 0 0 40px #ff4b4b, 0 0 60px #ff4b4b99,
		0 0 80px #fff2;
	-webkit-animation: neon-flicker 1.2s infinite alternate;
	animation: neon-flicker 1.2s infinite alternate;
}
@-webkit-keyframes neon-flicker {
	0% {
		opacity: 1;
		text-shadow: 0 0 8px #ff4b4b, 0 0 24px #ff4b4b, 0 0 40px #ff4b4b, 0 0 60px #ff4b4b99,
			0 0 80px #fff2;
	}
	8% {
		opacity: 0.7;
		text-shadow: 0 0 2px #ff4b4b, 0 0 8px #ff4b4b, 0 0 16px #ff4b4b99, 0 0 24px #fff2;
	}
	10% {
		opacity: 0.3;
		text-shadow: none;
	}
	12% {
		opacity: 0.8;
		text-shadow: 0 0 8px #ff4b4b, 0 0 24px #ff4b4b, 0 0 40px #ff4b4b, 0 0 60px #ff4b4b99,
			0 0 80px #fff2;
	}
	16% {
		opacity: 1;
	}
	18% {
		opacity: 0.5;
		text-shadow: none;
	}
	20% {
		opacity: 1;
		text-shadow: 0 0 8px #ff4b4b, 0 0 24px #ff4b4b, НУ Т 0 0 40px #ff4b4b, 0 0 60px #ff4b4b99,
			0 0 80px #fff2;
	}
	100% {
		opacity: 1;
		text-shadow: 0 0 8px #ff4b4b, 0 0 24px #ff4b4b, 0 0 40px #ff4b4b, 0 0 60px #ff4b4b99,
			0 0 80px #fff2;
	}
}
@keyframes neon-flicker {
	0% {
		opacity: 1;
		text-shadow: 0 0 8px #ff4b4b, 0 0 24px #ff4b4b, 0 0 40px #ff4b4b, 0 0 60px #ff4b4b99,
			0 0 80px #fff2;
	}
	8% {
		opacity: 0.7;
		text-shadow: 0 0 2px #ff4b4b, 0 0 8px #ff4b4b, 0 0 16px #ff4b4b99, 0 0 24px #fff2;
	}
	10% {
		opacity: 0.3;
		text-shadow: none;
	}
	12% {
		opacity: 0.8;
		text-shadow: 0 0 8px #ff4b4b, 0 0 24px #ff4b4b, 0 0 40px #ff4b4b, 0 0 60px #ff4b4b99,
			0 0 80px #fff2;
	}
	16% {
		opacity: 1;
	}
	18% {
		opacity: 0.5;
		text-shadow: none;
	}
	20% {
		opacity: 1;
		text-shadow: 0 0 8px #ff4b4b, 0 0 24px #ff4b4b, НУ Т 0 0 40px #ff4b4b, 0 0 60px #ff4b4b99,
			0 0 80px #fff2;
	}
	100% {
		opacity: 1;
		text-shadow: 0 0 8px #ff4b4b, 0 0 24px #ff4b4b, 0 0 40px #ff4b4b, 0 0 60px #ff4b4b99,
			0 0 80px #fff2;
	}
}

.neon-stroke {
	-webkit-text-stroke: 2.5px #fff;
	text-stroke: 2.5px #fff;
	/* fallback for non-webkit: */
	-webkit-filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 2px #fff2);
	filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 2px #fff2);
}

.ultra-premium {
	background: linear-gradient(135deg, #ff4b4b 0%, #fff 100%);
	border-radius: 12px;
	padding: 1rem;
	box-shadow: 0 4px 20px rgba(255, 75, 75, 0.3);
	transition: transform 0.3s;
}

.ultra-premium:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(255, 75, 75, 0.4);
}

.ultra-premium-bg {
	background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="#fff" stroke-width="4" fill="none"/><circle cx="50" cy="50" r="30" stroke="#ff4b4b" stroke-width="4" fill="none"/></svg>')
		repeat;
	background-size: 20px 20px;
	border-radius: 12px;
	padding: 0.5rem;
	box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.ultra-premium-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.ultra-premium-logo {
	font-size: 1.5rem;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.ultra-premium-logo span {
	font-weight: 700;
	color: #ff4b4b;
}

.ultra-premium-loyalty {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.ultra-premium-loyalty span {
	font-weight: 700;
	color: #ff4b4b;
}

.ultra-premium-progress {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.ultra-premium-stamp {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
}

.ultra-premium-stamp.completed {
	background: #ff4b4b;
}

.ultra-premium-reward {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.ultra-premium-footer {
	font-size: 0.9rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.glass-premium {
	position: relative;
	background: rgba(20, 20, 24, 0.55);
	border-radius: 22px;
	border: 2.5px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 0 32px 0 #ff4b4b44, 0 2px 32px 0 #fff2, 0 0 0 4px rgba(255, 75, 75, 0.08);
	overflow: hidden;
	min-width: 340px;
	min-height: 240px;
	padding: 2.2rem 2.2rem 1.7rem 2.2rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	transition: box-shadow 0.4s, transform 0.3s;
	-webkit-backdrop-filter: blur(12px) saturate(1.2);
	backdrop-filter: blur(12px) saturate(1.2);
}
.glass-premium:hover {
	box-shadow: 0 0 48px 0 #ff4b4bcc, 0 2px 48px 0 #fff4, 0 0 0 8px rgba(255, 75, 75, 0.13);
	transform: translateY(-6px) scale(1.02);
}
.glass-premium-bg {
	position: absolute;
	inset: 0;
	background: url("https://www.transparenttextures.com/patterns/diamond-upholstery.png"),
		linear-gradient(135deg, #18181c 60%, #23233a 100%);
	opacity: 0.85;
	z-index: 0;
	pointer-events: none;
}
.glass-premium-header {
	z-index: 2;
	margin-bottom: 1.5rem;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}
.glass-premium-logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.1rem;
}
.glass-premium-logo-main {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 1.7rem;
	font-weight: 900;
	color: #fff;
	letter-spacing: 0.12em;
	text-shadow: 0 0 8px #fff8, 0 2px 12px #ff4b4b44;
	text-transform: uppercase;
}
.glass-premium-logo-sub {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 1.1rem;
	font-weight: 800;
	background: linear-gradient(90deg, #ff4b4b 0%, #fff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-top: -0.2em;
	text-shadow: 0 0 8px #ff4b4b44;
}
.glass-premium-loyalty {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	text-align: right;
	margin-top: 0.2em;
}
.glass-premium-loyalty span {
	color: #ff4b4b;
	background: linear-gradient(90deg, #ff4b4b 0%, #fff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 900;
	letter-spacing: 0.13em;
}
.glass-premium-progress {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.7rem;
	margin-bottom: 1.2rem;
	z-index: 2;
	width: 100%;
}
.glass-premium-chip {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.13);
	border: 2.5px solid #fff;
	box-shadow: 0 0 12px 2px #fff2, 0 2px 8px 0 #ff4b4b33;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	position: relative;
	transition: box-shadow 0.3s, border 0.3s, background 0.3s;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.glass-premium-chip.completed {
	background: linear-gradient(135deg, #fff 60%, #ff4b4b 100%);
	border: 2.5px solid #ff4b4b;
	box-shadow: 0 0 16px 2px #ff4b4b88, 0 2px 8px 0 #fff3;
	-webkit-animation: chipGlow 1.8s infinite alternate;
	animation: chipGlow 1.8s infinite alternate;
}
@-webkit-keyframes chipGlow {
	0% {
		box-shadow: 0 0 8px 2px #ff4b4b44, 0 2px 8px 0 #fff2;
	}
	100% {
		box-shadow: 0 0 24px 6px #ff4b4bcc, 0 2px 12px 0 #fff4;
	}
}
@keyframes chipGlow {
	0% {
		box-shadow: 0 0 8px 2px #ff4b4b44, 0 2px 8px 0 #fff2;
	}
	100% {
		box-shadow: 0 0 24px 6px #ff4b4bcc, 0 2px 12px 0 #fff4;
	}
}
.glass-premium-chip.crown {
	background: linear-gradient(135deg, #fffbe6 60%, #ffd700 100%);
	border: 2.5px solid #ffd700;
	box-shadow: 0 0 24px 6px #ffd70088, 0 2px 12px 0 #fff3;
	color: #ffd700;
	font-size: 1.5rem;
	-webkit-animation: crownPulse 1.2s infinite alternate;
	animation: crownPulse 1.2s infinite alternate;
}
@-webkit-keyframes crownPulse {
	0% {
		box-shadow: 0 0 12px 2px #ffd70044, 0 2px 8px 0 #fff2;
	}
	100% {
		box-shadow: 0 0 32px 10px #ffd700cc, 0 2px 16px 0 #fff4;
	}
}
@keyframes crownPulse {
	0% {
		box-shadow: 0 0 12px 2px #ffd70044, 0 2px 8px 0 #fff2;
	}
	100% {
		box-shadow: 0 0 32px 10px #ffd700cc, 0 2px 16px 0 #fff4;
	}
}
.glass-premium-reward {
	font-size: 1.18rem;
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 700;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 0.7rem 1.2rem;
	margin-bottom: 0.7rem;
	box-shadow: 0 0 12px 2px #ffd70033;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	z-index: 2;
}
.gift-emoji {
	font-size: 1.5rem;
	-webkit-filter: drop-shadow(0 0 4px #ffd70088);
	filter: drop-shadow(0 0 4px #ffd70088);
}
.glass-premium-reward-text b {
	color: #ffd700;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-shadow: 0 0 8px #ffd70044;
}
.glass-premium-footer {
	font-size: 1.01rem;
	font-family: "Montserrat", Arial, sans-serif;
	color: rgba(255, 255, 255, 0.85);
	letter-spacing: 0.09em;
	margin-top: 0.7rem;
	z-index: 2;
	text-shadow: 0 0 8px #fff2;
}

.blackcard-container {
	perspective: 1200px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
}
.blackcard {
	width: 340px;
	height: 210px;
	border-radius: 18px;
	background: #111;
	border: 2px solid #fff;
	box-shadow: none;
	position: relative;
	transition: border-color 0.3s, transform 0.5s;
	cursor: pointer;
	outline: none;
	transform-style: preserve-3d;
	will-change: transform;
}
.blackcard:focus,
.blackcard:hover {
	border-color: #ffdf80;
}
.blackcard:active {
	transform: scale(0.98);
}
.blackcard-face {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: 18px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.7rem 1.5rem 1.2rem 1.5rem;
	background: #111;
	box-sizing: border-box;
}
.blackcard-front {
	z-index: 2;
}
.blackcard-back {
	transform: rotateY(180deg);
	background: #111;
	z-index: 1;
}
.blackcard-logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.2rem;
}
.blackcard-monogram {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 2.1rem;
	font-weight: 900;
	color: #fff;
	letter-spacing: 0.18em;
	margin-bottom: 0.1em;
}
.blackcard-brand {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 1.01rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.13em;
	opacity: 0.85;
}
.blackcard-number {
	font-family: "Montserrat", monospace;
	font-size: 1.25rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: 0.18em;
	margin-top: 2.5rem;
	margin-left: 0.1em;
	align-self: flex-start;
	background: none;
	border-radius: 6px;
	padding: 0.1em 0.5em;
	box-shadow: none;
	position: relative;
}
.shimmer {
	background: linear-gradient(90deg, #fff 0%, #ffdf80 40%, #fff 100%);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: shimmerMove 2.5s infinite linear;
	animation: shimmerMove 2.5s infinite linear;
}
@-webkit-keyframes shimmerMove {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}
@keyframes shimmerMove {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}
.blackcard-back-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	height: 100%;
	gap: 1.1rem;
}
.blackcard-reward {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 1.1rem;
	font-weight: 900;
	color: #ffdf80;
	letter-spacing: 0.13em;
	margin-bottom: 0.2em;
}
.blackcard-mini {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 0.98rem;
	color: #fff;
	opacity: 0.7;
	letter-spacing: 0.09em;
}
.blackcard-qr {
	width: 54px;
	height: 54px;
	background: #fff;
	border-radius: 8px;
	margin-top: 0.7em;
	background-image: url("https://api.qrserver.com/v1/create-qr-code/?size=54x54&data=https://t.me/uncle_stn");
	background-size: cover;
}
.blackcard {
	transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s;
}
.blackcard.flipped {
	transform: rotateY(180deg);
}
.blackcard:focus {
	outline: none;
}
@media (max-width: 600px) {
	.blackcard,
	.blackcard-container {
		width: 98vw;
		min-width: 0;
		max-width: 99vw;
		height: 180px;
	}
}

.goldcard-container {
	perspective: 1200px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
}
.goldcard {
	width: 340px;
	height: 210px;
	border-radius: 18px;
	background: linear-gradient(135deg, #2d2200 0%, #bfa14a 100%);
	border: 2.5px solid #ffd700;
	box-shadow: 0 0 32px 0 #bfa14a55;
	position: relative;
	transition: border-color 0.3s, box-shadow 0.4s, transform 0.5s;
	cursor: pointer;
	outline: none;
	transform-style: preserve-3d;
	will-change: transform;
}
.goldcard:focus,
.goldcard:hover {
	border-color: #fffbe6;
	box-shadow: 0 0 48px 0 #ffd700cc;
}
.goldcard:active {
	transform: scale(0.98);
}
.goldcard-face {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: 18px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.7rem 1.5rem 1.2rem 1.5rem;
	background: none;
	box-sizing: border-box;
}
.goldcard-front {
	z-index: 2;
}
.goldcard-back {
	transform: rotateY(180deg);
	background: linear-gradient(135deg, #2d2200 0%, #bfa14a 100%);
	z-index: 1;
}
.goldcard-logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.2rem;
}
.goldcard-monogram {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 2.1rem;
	font-weight: 900;
	color: #ffd700;
	letter-spacing: 0.18em;
	margin-bottom: 0.1em;
}
.goldcard-brand {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 1.01rem;
	font-weight: 700;
	color: #fffbe6;
	letter-spacing: 0.13em;
	opacity: 0.92;
}
.goldcard-number {
	font-family: "Montserrat", monospace;
	font-size: 1.25rem;
	font-weight: 800;
	color: #fffbe6;
	letter-spacing: 0.18em;
	margin-top: 2.5rem;
	margin-left: 0.1em;
	align-self: flex-start;
	background: none;
	border-radius: 6px;
	padding: 0.1em 0.5em;
	box-shadow: none;
	position: relative;
}
.gold-shimmer {
	background: linear-gradient(90deg, #fffbe6 0%, #ffd700 40%, #fffbe6 100%);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: goldShimmerMove 2.5s infinite linear;
	animation: goldShimmerMove 2.5s infinite linear;
}
@-webkit-keyframes goldShimmerMove {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}
@keyframes goldShimmerMove {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}
.goldcard-back-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	height: 100%;
	gap: 1.1rem;
}
.goldcard-reward {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 1.1rem;
	font-weight: 900;
	color: #ffd700;
	letter-spacing: 0.13em;
	margin-bottom: 0.2em;
}
.goldcard-mini {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 0.98rem;
	color: #fffbe6;
	opacity: 0.8;
	letter-spacing: 0.09em;
}
.goldcard-qr {
	width: 54px;
	height: 54px;
	background: #fffbe6;
	border-radius: 8px;
	margin-top: 0.7em;
	background-image: url("https://api.qrserver.com/v1/create-qr-code/?size=54x54&data=https://t.me/uncle_stn");
	background-size: cover;
}
.goldcard {
	transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s, box-shadow 0.4s;
}
.goldcard.flipped {
	transform: rotateY(180deg);
}
.goldcard:focus {
	outline: none;
}
@media (max-width: 600px) {
	.goldcard,
	.goldcard-container {
		width: 98vw;
		min-width: 0;
		max-width: 99vw;
		height: 180px;
	}
}
.cloudclub-card-wrapper {
	perspective: 1000px; /* Важливо для 3D-ефекту */
	display: flex;
	justify-content: center;
	margin: 50px 0;
}
.cloudclub-card {
	background: rgb(17, 17, 17);
	border-radius: 18px;
	position: relative;
	padding: 15px;
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5), 0 -2px 6px rgba(255, 255, 255, 0.05) inset,
		0 4px 8px rgba(255, 255, 255, 0.06) inset, 0 0 0 1px rgba(255, 255, 255, 0.07);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	transform-style: preserve-3d;
	-webkit-animation: cardTilt 2s ease-in-out infinite alternate;
	animation: cardTilt 2s ease-in-out infinite alternate;
	transition: transform 0.6s ease;
	overflow: hidden;
}
.cloudclub-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 18px;
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.03), 0 0 60px rgba(255, 0, 0, 0.04);
	pointer-events: none;
	z-index: 1;
}
@-webkit-keyframes cardTilt {
	0% {
		transform: rotateY(-8deg) rotateX(2deg);
	}
	50% {
		transform: rotateY(0deg) rotateX(0deg);
	}
	100% {
		transform: rotateY(8deg) rotateX(2deg);
	}
}
@keyframes cardTilt {
	0% {
		transform: rotateY(-8deg) rotateX(2deg);
	}
	50% {
		transform: rotateY(0deg) rotateX(0deg);
	}
	100% {
		transform: rotateY(8deg) rotateX(2deg);
	}
}
.cloudclub-logo {
	width: 70px;
	margin-right: -10px;
}
.cloudclub-logo img {
	width: 100%;
}
.cloudclub-front {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.2rem;
}
.cloudclub-logo-row {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	margin-bottom: 0.7rem;
}
.cloudclub-logo svg {
	display: block;
}
.cloudclub-title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.1rem;
}
.cloudclub-brand {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: var(--primary, #ff4b4b);
	letter-spacing: 0.13em;
	text-transform: uppercase;
}
.cloudclub-club {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 24px;
	font-weight: 900;
	color: #fff;
	letter-spacing: 0.01em;
	text-transform: none;
}
.cloudclub-stamps-row {
	display: flex;
	gap: 0.7rem;
	margin: 0 0 10px 0;
	justify-content: center;
}
/* .cloudclub-stamp {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: url("../img/cloud.png") no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	color: #111;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 1.15rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2.5px solid #eee;
	box-shadow: 0 1px 4px #0002; 
	transition: border 0.2s, box-shadow 0.2s;
} */

.cloudclub-stamp {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	color: #111;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 1.15rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #eee;
	border: 2.5px solid #eee;
	box-shadow: 0 1px 4px #0002;
	transition: border 0.2s, box-shadow 0.2s;
}

.cloudclub-stamp-final {
	background: var(--primary, #ff4b4b);
	color: #fff;
	border: 2.5px solid #ff4b4b;
	box-shadow: 0 0 12px 2px #ff4b4b55;
	font-size: 1.3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.cloudclub-crown {
	color: #ffd700;
	font-size: 1.3em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cloudclub-promo {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 1.15rem;
	color: #fff;
	font-weight: 700;
	margin-top: 0.7rem;
	text-align: center;
}
.cloudclub-promo span {
	color: var(--primary, #ff4b4b);
	font-weight: 900;
}
@media (max-width: 600px) {
	.cloudclub-card {
		width: 99vw;
		min-width: 0;
		padding: 1.2rem 0.5rem 1.2rem 0.5rem;
	}
	.cloudclub-title .cloudclub-club {
		font-size: 1.3rem;
	}
}
.hamburger-menu {
	display: none;
	width: 40px;
	height: 40px;
	border: none;
	cursor: pointer;
	background: url("../img/menu.png") no-repeat center center;
	background-color: transparent !important;
	background-size: 25px 25px;
	background-position: center center;
	transition: ease-in-out 0.3s;
}
.hamburger-menu.active {
	background: url("../img/close.png") no-repeat center center;
	background-color: transparent !important;
	background-size: 20px 20px;
	background-position: center center;
}
.club-info .join-button,
.club-visual .cloud-club-title {
	display: none;
}

/*ADAPTIVE*/

@media (max-width: 1170px) {
	.logo-title {
		font-size: 16px;
	}
	.logo-subtitle {
		font-size: 14px;
	}
	.nav-button.compact {
		padding: 10px;
		height: 40px;
		flex-wrap: nowrap;
		display: flex;
		align-items: center;
		margin: 0;
		font-size: 14px;
	}
	.nav-button.compact i {
		margin-right: 5px;
	}
	.nav-link.soft-highlight {
		padding: 0 5px;
	}
	.hero {
		height: auto;
		min-height: 100dvh;
		padding-top: 110px;
		padding-bottom: 30px;
	}
	.join-button {
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 15px;
		margin: 0 auto;
		float: none;
		width: auto;
		max-width: 300px;
	}
	.club-visual {
		height: auto;
	}
	.club-visual .join-button {
		display: none;
	}
	.club-visual .cloud-club-title {
		display: block;
	}
	.club-info .join-button {
		display: flex;
	}
	.club-info .cloud-club-title {
		display: none;
	}
	.cloudclub-card {
		width: 100%;
		max-width: 500px;
	}
	.cloudclub-front {
		gap: 0;
	}
}

@media (max-width: 992px) {
	.nav-links {
		display: flex;
		padding: 50px 50px 30px 30px;
		flex-direction: column;
		align-items: flex-start;
		position: fixed;
		right: 0;
		top: 0;
		height: 100dvh;
		background-color: #000;
		z-index: 250;
		width: 280px;
		transition: ease-in-out 0.3s;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateX(100%);
		border-left: 1px solid rgba(255, 255, 255, 0.1);
	}
	.nav-links.visible {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateX(0%);
	}
	.compact-navbar {
		flex-direction: row;
		align-items: center;
	}
	.nav-group {
		justify-content: flex-end;
	}
	.hamburger-menu {
		display: block;
		position: relative;
		z-index: 300;
	}
	.nav-link.soft-highlight {
		margin-bottom: 10px;
	}
	.hero-title-underline {
		margin: 0 auto;
	}
	.hero-description {
		margin-bottom: 30px;
	}
	.hero-image-large {
		margin: 0 auto;
		width: 100%;
		max-width: 450px;
	}
	.section-title {
		font-size: 2rem;
	}
	.pricing {
		padding: 50px 0;
	}
	.features {
		padding-bottom: 20px;
	}
	.pricing-title h2,
	.cta-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.hero-description {
		text-align: center;
	}
	.price-tag {
		position: absolute;
		left: 10px;
		right: auto;
		top: auto;
		bottom: 10px;
		margin: 0;
	}
	.footer-content {
		display: flex;
		flex-direction: column;
		align-items: center !important;
	}
	.footer-section {
		margin: 0 auto;
	}
	.pricing-card {
		width: 100%;
	}
	.footer-nav {
		display: none;
	}
	.footer-networks {
		width: 100%;
	}
	.new-logo-premium {
		padding: 0;
		gap: 0;
	}
	.social-buttons {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.footer-logo {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.footer-logo .logo-text-block {
		text-align: center;
		align-items: center;
	}
	.cloud-club-content {
		padding: 0 !important;
	}
	.cloudclub-stamp {
		width: 28px;
		height: 28px;
		font-size: 0.95rem;
	}
	.cloudclub-card {
		max-width: 430px;
	}
}
@media (max-width: 640px) {
	.container {
		padding: 0 15px;
	}
	.benefit-item {
		width: 100%;
	}
	.cta {
		padding: 0;
	}
	.footer {
		margin: 0 !important;
	}
	.cloud-club {
		padding-bottom: 20px;
	}
}

@media (max-width: 480px) {
	.logo-title {
		font-size: 12px;
	}
	.logo-subtitle {
		font-size: 10px;
	}
	.new-logo-premium {
		padding-right: 5px;
	}
	.nav-group {
		gap: 0;
	}
	.nav-button.compact {
		padding: 7px;
		font-size: 12px;
	}
}
