.slots-page {
	margin-top: 80px;
	padding: 4rem 0;
	/* background: linear-gradient(135deg, #11021c, #2c3e50); */
	min-height: calc(100vh - 80px);
	position: relative;
	overflow: hidden
}

.slots-page:before {
	content: "";
	position: absolute;
	inset: 0;
	/* background: radial-gradient(circle at 20% 30%, rgba(255, 167, 38, .08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(128, 203, 196, .08) 0%, transparent 50%) */
}

.page-header {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	z-index: 1
}


.page-description {
	max-width: 800px;
	margin: 0 auto;
	color: #ffffffe6;
	font-size: clamp(1rem, 2.5vw, 1.125rem);
	line-height: 1.6
}

.slots-banner {
	/* background: linear-gradient(135deg, #ff6b6b, #4ecdc4); */
	border-radius: 20px;
	padding: 3rem 2rem;
	margin-bottom: 4rem;
	position: relative;
	overflow: hidden;
	/* box-shadow: 0 20px 60px #0000004d; */
	z-index: 1
}

.slots-banner:before {
	content: "";
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="slots-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23slots-pattern)"/></svg>')
}

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

.banner-text h2 {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	color: #fff;
	margin-bottom: .5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
	text-transform: uppercase;
	letter-spacing: 2px
}

.banner-text p {
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	color: #ffffffe6;
	margin: 0;
	font-weight: 500
}

.banner-visual {
	display: flex;
	align-items: center;
	justify-content: center
}

.slot-machine {
	display: flex;
	gap: .5rem;
	background: #fff3;
	padding: 1rem;
	border-radius: 15px;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, .3)
}

.slot-reel {
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	animation: spin 3s ease-in-out infinite;
	box-shadow: 0 4px 15px #0003
}

.slot-reel:nth-child(2) {
	animation-delay: .5s
}

.slot-reel:nth-child(3) {
	animation-delay: 1s
}

@keyframes spin {

	0%,
	80%,
	to {
		transform: rotateY(0)
	}

	40% {
		transform: rotateY(180deg)
	}
}

.why-choose-slots {
	margin-bottom: 4rem;
	position: relative;
	z-index: 1
}

.why-choose-slots h2 {
	text-align: center;
	color: #9909ff;
	margin-bottom: 2rem;
	font-size: clamp(1.5rem, 3vw, 1.75rem)
}

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

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

.benefit-card:before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 167, 38, .1), transparent);
	transition: left .6s ease
}

.benefit-card:hover:before {
	left: 100%
}

.benefit-card:hover {
	transform: translateY(-8px);
	background: #ffffff14;
	border-color: #9909ff4d;
	box-shadow: 0 15px 40px #0000004d
}

.benefit-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	display: block;
	transition: transform .3s ease
}

.benefit-card:hover .benefit-icon {
	transform: scale(1.1) rotate(5deg)
}

.benefit-card h3 {
	color: #9909ff;
	margin-bottom: 1rem;
	font-size: 1.25rem
}

.benefit-card p {
	color: #fffc;
	font-size: .95rem;
	line-height: 1.5;
	margin: 0
}

.how-slots-work {
	margin-bottom: 4rem;
	position: relative;
	z-index: 1
}

.how-slots-work h2 {
	text-align: center;
	color: #9909ff;
	margin-bottom: 2rem;
	font-size: clamp(1.5rem, 3vw, 1.75rem)
}

.steps-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto
}

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

.step-item:hover {
	transform: translateY(-6px);
	background: #ffffff14;
	border-color: #9909ff4d
}

.step-number {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translate(-50%);
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #9909ff, #4ecdc4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #fff;
	font-size: 1.25rem;
	box-shadow: 0 4px 15px #9909ff4d
}

.step-icon {
	font-size: 2rem;
	margin: 1rem 0;
	display: block
}

.step-item h3 {
	color: #9909ff;
	margin-bottom: 1rem;
	font-size: 1.25rem
}

.step-item p {
	color: #fffc;
	font-size: .95rem;
	line-height: 1.5;
	margin: 0
}

.popular-slots {
	margin-bottom: 4rem;
	position: relative;
	z-index: 1
}

.popular-slots h2 {
	text-align: center;
	color: #9909ff;
	margin-bottom: 2rem;
	font-size: clamp(1.5rem, 3vw, 1.75rem)
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto 4rem
}

.slot-card {
	background: #ffffff0d;
	border-radius: 20px;
	padding: 2rem;
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, .1);
	transition: all .4s cubic-bezier(.4, 0, .2, 1);
	position: relative;
	overflow: hidden;
	text-align: center
}

.slot-card.featured {
	border: 2px solid #9909ff;
	box-shadow: 0 0 40px #9909ff4d
}

.slot-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px #0006;
	background: #ffffff14;
	border-color: #9909ff66
}

.slot-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: .4rem 1rem;
	border-radius: 25px;
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	white-space: nowrap;
	letter-spacing: .5px;
	box-shadow: 0 4px 15px #0003;
	z-index: 10;
	background: linear-gradient(135deg, #ff5722, #e64a19);
	color: #fff
}

.slot-badge.classic {
	background: linear-gradient(135deg, #795548, #5d4037)
}

.slot-badge.jackpot {
	background: linear-gradient(135deg, gold, #ffa000);
	color: #11021c
}

.slot-image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 120px;
	margin: 0 auto 1.5rem;
	border-radius: 12px;
	overflow: hidden;
	background: #ffffff0d;
	border: 1px solid rgba(255, 255, 255, .1)
}

.slot-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s ease;
	filter: brightness(1.1) contrast(1.1)
}

.slot-card:hover .slot-photo {
	transform: scale(1.05);
	filter: brightness(1.2) contrast(1.2)
}

.slot-info h3 {
	color: #fff;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	font-weight: 700
}

.slot-features {
	margin: 1.5rem 0;
	text-align: left
}

.feature-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: .75rem;
	padding-bottom: .75rem;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	gap: 1rem
}

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

.feature-label {
	color: #ffffffb3;
	font-weight: 500;
	flex-shrink: 0;
	font-size: .9rem
}

.feature-value {
	color: #9909ff;
	font-weight: 600;
	text-align: right;
	font-size: .9rem;
	line-height: 1.3
}

.slot-btn {
	width: 100%;
	margin-top: 1.5rem;
	padding: 1rem 2rem;
	font-size: .95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px
}

.slots-promo {
	background: #ffffff0d;
	border-radius: 20px;
	padding: 3rem 2rem;
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, .1);
	text-align: center;
	margin-top: 3rem
}

.slots-promo h3 {
	color: #9909ff;
	margin-bottom: 2rem;
	font-size: clamp(1.25rem, 3vw, 1.5rem)
}

.promo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	max-width: 1000px;
	margin: 0 auto
}

.promo-item {
	background: #ffffff0d;
	border-radius: 12px;
	padding: 1.5rem;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, .1);
	transition: all .3s ease
}

.promo-item:hover {
	transform: translateY(-4px);
	background: #ffffff14;
	border-color: #9909ff4d
}

.promo-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
	display: block
}

.promo-item h4 {
	color: #9909ff;
	margin-bottom: .75rem;
	font-size: 1.1rem
}

.promo-item p {
	color: #fffc;
	font-size: .9rem;
	line-height: 1.4;
	margin: 0
}

.winning-tips {
	margin-bottom: 4rem;
	position: relative;
	z-index: 1
}

.winning-tips h2 {
	text-align: center;
	color: #9909ff;
	margin-bottom: 2rem;
	font-size: clamp(1.5rem, 3vw, 1.75rem)
}

.tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	max-width: 1000px;
	margin: 0 auto
}

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

.tip-card:hover {
	transform: translateY(-6px);
	background: #ffffff14;
	border-color: #9909ff4d
}

.tip-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
	display: block
}

.tip-card h3 {
	color: #9909ff;
	margin-bottom: 1rem;
	font-size: 1.25rem
}

.tip-card p {
	color: #fffc;
	font-size: .95rem;
	line-height: 1.5;
	margin: 0
}

.faq-section {
	margin-bottom: 4rem;
	position: relative;
	z-index: 1
}

.faq-section h2 {
	text-align: center;
	color: #9909ff;
	margin-bottom: 2rem;
	font-size: clamp(1.5rem, 3vw, 1.75rem)
}

.faq-container {
	max-width: 800px;
	margin: 0 auto
}

.faq-item {
	background: #ffffff0d;
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .1);
	transition: all .3s ease;
	backdrop-filter: blur(10px)
}

.faq-item:hover {
	background: #ffffff14;
	border-color: #9909ff4d
}

.faq-question {
	width: 100%;
	padding: 1.5rem;
	background: none;
	border: none;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all .3s ease;
	gap: 1rem
}

.faq-question:hover {
	color: #9909ff
}

.faq-icon {
	font-size: 1.5rem;
	color: #9909ff;
	transition: all .3s ease;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #9909ff1a
}

.faq-item[data-expanded=true] .faq-icon {
	transform: rotate(45deg);
	background: #9909ff33;
	color: #9909ff
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease, padding .3s ease
}

.faq-item[data-expanded=true] .faq-answer {
	max-height: 300px;
	padding-bottom: 1.5rem
}

.faq-answer p {
	padding: 0 1.5rem;
	color: #fffc;
	line-height: 1.6;
	margin: 0;
	font-size: .95rem
}

.back-to-home {
	text-align: center;
	margin-top: 3rem;
	position: relative;
	z-index: 1
}

@media (max-width: 768px) {
	.slots-page {
		margin-top: 70px;
		padding: 2rem 0
	}

	.banner-content {
		flex-direction: column;
		text-align: center;
		gap: 2rem
	}

	.slot-machine {
		scale: .8
	}

	.benefits-grid,
	.steps-container,
	.slots-grid,
	.tips-grid,
	.promo-grid {
		grid-template-columns: 1fr
	}

	.feature-item {
		flex-direction: column;
		text-align: center;
		gap: .5rem
	}

	.feature-value {
		text-align: center
	}

	.slot-badge {
		top: .75rem;
		right: .75rem;
		font-size: .7rem;
		padding: .3rem .8rem
	}
}

@media (max-width: 480px) {
	.slots-page {
		margin-top: 65px;
		padding: 1.5rem 0
	}

	.slots-banner {
		padding: 2rem 1rem
	}

	.slot-card,
	.benefit-card,
	.step-item,
	.tip-card,
	.promo-item {
		padding: 1.5rem
	}

	.slots-promo {
		padding: 2rem 1rem
	}

	.faq-question {
		padding: 1.25rem;
		font-size: .95rem
	}

	.faq-answer p {
		padding: 0 1.25rem
	}

	.faq-item[data-expanded=true] .faq-answer {
		padding-bottom: 1.25rem
	}
}