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

.page-header {
	text-align: center;
	margin-bottom: 4rem;
	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
}

.featured-blackjack-casinos {
	margin-bottom: 4rem;
	position: relative;
	z-index: 1
}

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

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

.casino-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
}

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

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

.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
}

.badge.first-place {
	background: linear-gradient(135deg, gold, orange);
	color: #11021c
}

.badge.second-place {
	background: linear-gradient(135deg, silver, #a8a8a8);
	color: #11021c
}

.badge.third-place {
	background: linear-gradient(135deg, #cd7f32, #b8860b);
	color: #fff
}

.casino-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1.5rem;
	height: 60px
}

.brand-logo {
	max-height: 50px;
	max-width: 120px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: brightness(1.1) contrast(1.1);
	transition: all .3s ease;
	border-radius: 8px;
	border: 2px solid rgba(255, 255, 255, .1);
	padding: 8px;
	background: #fffffff2
}

.casino-header h3 {
	color: #fff;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	margin: 0 0 1rem;
	font-weight: 700
}

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

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

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

.feature: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
}

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

.blackjack-history {
	margin-bottom: 4rem;
	position: relative;
	z-index: 1
}

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

.history-content {
	max-width: 1000px;
	margin: 0 auto
}

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

.timeline-item {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 2rem;
	align-items: start;
	background: #ffffff0d;
	border-radius: 16px;
	padding: 2rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, .1);
	transition: all .3s ease
}

.timeline-item:hover {
	transform: translate(8px);
	background: #ffffff14;
	border-color: #9909ff4d
}

.timeline-period {
	color: #9909ff;
	font-weight: 700;
	font-size: 1.1rem;
	text-align: center;
	background: #9909ff1a;
	padding: 1rem;
	border-radius: 12px;
	border: 1px solid rgba(128, 203, 196, .2)
}

.timeline-content h4 {
	color: #9909ff;
	margin-bottom: .75rem;
	font-size: 1.25rem
}

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

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

.why-play-blackjack 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
}

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

.benefit-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	display: block
}

.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-to-play {
	margin-bottom: 4rem;
	position: relative;
	z-index: 1
}

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

.game-intro {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 3rem;
	color: #ffffffe6;
	font-size: clamp(1rem, 2.5vw, 1.125rem);
	line-height: 1.6
}

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

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

.rule-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
}

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

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

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

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

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

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

.basic-strategy {
	margin-bottom: 4rem;
	position: relative;
	z-index: 1
}

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

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

.strategy-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
}

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

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

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

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

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

.beginner-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: 1200px;
	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) {
	.blackjack-page {
		margin-top: 70px;
		padding: 2rem 0
	}

	.casino-grid,
	.benefits-grid,
	.rules-grid,
	.strategy-grid,
	.tips-grid {
		grid-template-columns: 1fr
	}

	.timeline-item {
		grid-template-columns: 1fr;
		text-align: center
	}

	.timeline-period {
		margin-bottom: 1rem
	}

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

	.feature-value {
		text-align: center
	}

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

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

	.casino-card,
	.benefit-card,
	.rule-card,
	.strategy-card,
	.tip-card,
	.timeline-item {
		padding: 1.5rem
	}

	.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
	}
}