/* Homepage Specific Styles */

/* Hero Section */
.hero {
	padding: 6rem 0 4rem;
	background: linear-gradient(
		135deg,
		var(--bg-primary) 0%,
		var(--bg-secondary) 50%,
		#2a1a4a 100%
	);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		ellipse at center,
		rgba(255, 107, 53, 0.1) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.text-primary-glow {
	color: white;
}

.hero-subtitle {
	font-size: 1.3rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.hero-offers {
	margin-bottom: 2rem;
}

.offer-card {
	background: linear-gradient(
		135deg,
		var(--bg-card) 0%,
		rgba(255, 107, 53, 0.1) 100%
	);
	border: 2px solid var(--primary-glow);
	border-radius: 15px;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.offer-icon {
	font-size: 3rem;
	color: var(--secondary-glow);
}

.offer-content h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: var(--primary-glow);
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
}

.btn-large {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}

.hero-features {
	display: flex;
	gap: 2rem;
}

.feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-secondary);
}

.feature i {
	color: var(--success-glow);
	font-size: 1.2rem;
}

/* Game Preview */
.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.slot-machine {
	background: var(--bg-card);
	border: 3px solid var(--primary-glow);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
	transform: perspective(1000px) rotateY(-10deg);
}

.slot-display {
	background: #000;
	border-radius: 10px;
	padding: 1rem;
	margin-bottom: 1rem;
}

.reels {
	display: flex;
	gap: 0.5rem;
}

.reel {
	background: var(--bg-secondary);
	border: 2px solid var(--accent-glow);
	border-radius: 8px;
	width: 80px;
	height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.symbol {
	font-size: 2rem;
	line-height: 1;
	animation: spin-reel 3s linear infinite;
}

.spin-btn {
	background: linear-gradient(
		45deg,
		var(--primary-glow),
		var(--secondary-glow)
	);
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 25px;
	font-weight: bold;
	cursor: pointer;
	width: 100%;
	font-size: 1.1rem;
	box-shadow: 0 0 20px rgba(255, 53, 110, 0.4);
}

.spin-btn:hover {
	box-shadow: 0 0 30px rgba(255, 53, 53, 0.6);
	transform: translateY(-2px);
}

@keyframes spin-reel {
	0% {
		transform: translateY(-100%);
		opacity: 0;
	}
	20% {
		transform: translateY(0);
		opacity: 1;
	}
	80% {
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		transform: translateY(100%);
		opacity: 0;
	}
}

/* About Section */
.about {
	padding: 4rem 0;
	background: var(--bg-secondary);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	align-items: center;
}

.about-text {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

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

.about-buttons {
	display: flex;
	gap: 1rem;
}

.about-visual {
	display: flex;
	justify-content: center;
}

.about-card {
	text-align: center;
	padding: 2rem;
	background: linear-gradient(
		135deg,
		var(--bg-card) 0%,
		rgba(255, 107, 53, 0.1) 100%
	);
	border: 2px solid var(--primary-glow);
	border-radius: 15px;
	box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.about-card i {
	font-size: 3rem;
	color: var(--primary-glow);
	margin-bottom: 1rem;
}

.about-card h3 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
	padding: 4rem 0;
}

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

.how-it-works-card {
	text-align: center;
	padding: 2rem;
	background: linear-gradient(
		135deg,
		var(--bg-card) 0%,
		rgba(255, 107, 53, 0.1) 100%
	);
	border: 2px solid var(--primary-glow);
	border-radius: 15px;
	box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
	transition: all 0.3s ease;
}

.how-it-works-card:hover {
	border: 2px solid var(--secondary-glow);
	box-shadow: 0 0 25px rgba(255, 107, 53, 0.3);
}

.how-it-works-icon {
	font-size: 3rem;
	color: var(--primary-glow);
	margin-bottom: 1rem;
}

.how-it-works-card h3 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

/* Features Section */
.features {
	padding: 4rem 0;
	background: var(--bg-secondary);
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--primary-glow);
}

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

.feature-card {
	text-align: center;
	padding: 2rem;
	background: linear-gradient(
		135deg,
		var(--bg-card) 0%,
		rgba(255, 107, 53, 0.1) 100%
	);
	border: 2px solid var(--primary-glow);
	border-radius: 15px;
	box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
	transition: all 0.3s ease;
}

.feature-card:hover {
	border: 2px solid var(--secondary-glow);
	box-shadow: 0 0 25px rgba(255, 107, 53, 0.3);
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 0.4rem;
	color: var(--primary-glow);
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

/* Testimonials */
.testimonials {
	padding: 4rem 0;
}

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

.testimonial-card {
	text-align: center;
}

.testimonial-stars {
	color: var(--secondary-glow);
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.testimonial-card p {
	font-style: italic;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.6;
}

.testimonial-author strong {
	color: var(--primary-glow);
	display: block;
	margin-bottom: 0.5rem;
}

.testimonial-author span {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* Leaderboard */
.leaderboard {
	padding: 4rem 0;
	background: var(--bg-secondary);
}

.leaderboard-container {
	max-width: 600px;
	margin: 0 auto;
}

.leaderboard-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	border-bottom: 1px forced var(--border-glow);
	transition: all 0.3s ease;
}

.leaderboard-item:hover {
	background: rgba(255, 107, 53, 0.05);
	border-radius: 10px;
}

.leaderboard-item:last-child {
	border-bottom: none;
}

.rank {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	background: var(--border-glow);
	color: var(--text-primary);
}

.rank.gold {
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	color: #000;
}

.rank.silver {
	background: linear-gradient(45deg, #c0c0c0, #e8e8e8);
	color: #000;
}

.rank.bronze {
	background: linear-gradient(45deg, #cd7f32, #daa520);
	color: #fff;
}

.player-info {
	flex: 1;
}

.player-name {
	display: block;
	font-weight: bold;
	color: var(--text-primary);
}

.player-score {
	display: block;
	color: palegreen;
	font-size: 0.9rem;
}

/* Call to Action */
.cta {
	padding: 4rem 0;
}

.cta-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 3rem;
}

.cta-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 2rem;
}

.disclaimer {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-top: 2rem;
}

.disclaimer i {
	color: var(--primary-glow);
	margin-right: 0.5rem;
}

/* Social Links */
.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-link {
	width: 40px;
	height: 40px;
	background: var(--primary-glow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--secondary-glow);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
		justify-items: center;
	}

	.hero-text {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		width: 100%;
	}

	.hero-title {
		font-size: 3rem;
		text-align: center;
	}

	.hero-subtitle {
		text-align: center;
	}

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

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

	.slot-machine {
		transform: none;
	}

	.about-content {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hero {
		padding: 4rem 0 2rem;
	}

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

	.hero-subtitle {
		font-size: 1.1rem;
	}

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

	.hero-features {
		flex-direction: column;
		gap: 1rem;
	}

	.offer-card {
		flex-direction: column;
		text-align: center;
	}

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

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

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

	.reels {
		gap: 0.25rem;
	}

	.reel {
		width: 60px;
		height: 90px;
	}

	.symbol {
		font-size: 1.5rem;
	}

	.how-it-works-grid {
		grid-template-columns: 1fr;
	}

	.about-card {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.cta-content {
		padding: 2rem 1rem;
	}

	h1,
	h2,
	h3 {
		line-height: normal;
	}

	.how-it-works-card {
		padding: 1.5rem;
	}

	.feature-card {
		padding: 1.5rem;
	}
}

/* Premium Slot Features Section */
.premium-slot-features {
	padding: 4rem 0;
	background-color: #1a1a1a;
	color: #fff;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.section-subtitle {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: #888;
}

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

.feature-card {
	text-align: center;
	padding: 2rem;
	background-color: #2a2a2a;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.feature-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 0.5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon i {
	font-size: 1.5rem;
	color: #fff;
}

.feature-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #fff;
}

.feature-card p {
	font-size: 0.9rem;
	color: #ccc;
	line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
	.features-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.section-title {
		font-size: 2rem;
	}
	.feature-card {
		padding: 1.5rem;
	}
	.feature-icon {
		width: 50px;
		height: 50px;
	}
	.feature-card h3 {
		font-size: 1.1rem;
	}
	.feature-card p {
		font-size: 0.85rem;
	}
}

/* Fancy About Section */
.about-fancy {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.about-main {
	margin-bottom: 3rem;
}

.about-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(
		45deg,
		var(--primary-glow),
		var(--secondary-glow)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	box-shadow: 0 0 30px rgba(191, 53, 255, 0.4);
	animation: logo-pulse 3s ease-in-out infinite;
}

.about-icon i {
	font-size: 3rem;
	color: white;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.about-main h3 {
	font-size: 2.5rem;
	color: var(--text-primary);
	margin-bottom: 1rem;
	text-shadow: 0 0 20px rgba(191, 53, 255, 0.3);
}

.about-description {
	font-size: 1.3rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 2rem;
}

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

.stat-card {
	background: var(--bg-card);
	border: 2px solid var(--primary-glow);
	border-radius: 20px;
	padding: 2rem;
	transition: all 0.3s ease;
	box-shadow: 0 0 20px rgba(255, 53, 164, 0.2);
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(255, 53, 53, 0.4);
}

.stat-number {
	font-size: 3rem;
	font-weight: bold;
	background: linear-gradient(
		45deg,
		var(--primary-glow),
		var(--secondary-glow)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--text-secondary);
	font-size: 1.1rem;
	font-weight: 500;
}

.about-features {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.feature-highlight {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 2rem;
	background: rgba(191, 53, 255, 0.1);
	border: 1px solid var(--primary-glow);
	border-radius: 50px;
	transition: all 0.3s ease;
}

.feature-highlight:hover {
	background: rgba(255, 53, 141, 0.2);
	transform: scale(1.05);
}

.feature-highlight i {
	font-size: 1.5rem;
	color: var(--primary-glow);
}

.feature-highlight span {
	color: var(--text-primary);
	font-weight: 500;
	font-size: 1.1rem;
}

.about-cta {
	margin-top: 2rem;
}

@keyframes logo-pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 30px rgba(255, 53, 147, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 50px rgba(255, 53, 53, 0.6);
	}
}

/* Mobile responsiveness for about section */
@media (max-width: 768px) {
	.about-main h3 {
		font-size: 2rem;
	}

	.about-description {
		font-size: 1.1rem;
	}

	.about-stats {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.stat-card {
		padding: 1.5rem;
	}

	.stat-number {
		font-size: 2.5rem;
	}

	.about-features {
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
	}

	.feature-highlight {
		justify-content: center;
		width: 100%;
		max-width: 300px;
	}

	.about-icon {
		width: 80px;
		height: 80px;
		margin-bottom: 1.5rem;
	}

	.about-icon i {
		font-size: 2rem;
	}
}

/* Modern Hero Section */
.modern-hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	pointer-events: none;
}

.bg-video img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(3px);
	z-index: 2;
}

.hero-container {
	position: relative;
	z-index: 10;
	text-align: center;
	max-width: 800px;
	padding: 0 2rem;
}

.hero-content-center {
	animation: fadeInUp 1s ease-out;
}

.modern-hero-title {
	font-size: 4rem;
	font-weight: 700;
	color: white;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	line-height: 1.2;
}

.modern-hero-subtitle {
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2.5rem;
	font-weight: 300;
	line-height: 1.6;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 1.5rem 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	animation: subtitleGlow 3s ease-in-out infinite alternate;
}

.register-link {
	color: #ff6b35;
	text-decoration: none;
	font-weight: 700;
	background-clip: text;
	transition: all 0.3s ease;
	text-transform: uppercase;
	font-size: 1.1em;
	position: relative;
	display: inline-block;
}

.register-link:hover {
	transform: scale(1.05);
	text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
	-webkit-text-fill-color: #ff6b35;
}

.coin-highlight {
	color: #ffd700;
	font-weight: 900;
	font-size: 1.2em;
	text-transform: uppercase;
	text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: coinPulse 2s ease-in-out infinite;
	position: relative;
	display: inline-block;
}

.coin-highlight::before {
	content: "💰";
	position: absolute;
	left: -30px;
	top: -2px;
	font-size: 1.2em;
	animation: coinBounce 2s ease-in-out infinite;
}

.coin-highlight::after {
	content: "💰";
	position: absolute;
	right: -30px;
	top: -2px;
	font-size: 1.2em;
	animation: coinBounce 2s ease-in-out infinite 0.5s;
}

.limited-time {
	color: #ff4757;
	font-weight: 600;
	font-size: 0.9em;
	text-transform: uppercase;
	background: rgba(255, 71, 87, 0.2);
	padding: 0.3rem 0.8rem;
	margin-top: 0.5rem;
	border-radius: 20px;
	border: 1px solid rgba(255, 71, 87, 0.5);
	display: inline-block;
	animation: urgencyBlink 2s ease-in-out infinite;
	box-shadow: 0 0 10px rgba(255, 71, 87, 0.3);
}

@keyframes subtitleGlow {
	0% {
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 107, 53, 0.2);
		border-color: rgba(255, 255, 255, 0.1);
	}
	100% {
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 107, 53, 0.4);
		border-color: rgba(255, 107, 53, 0.3);
	}
}

@keyframes coinPulse {
	0%,
	100% {
		transform: scale(1);
		text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
	}
	50% {
		transform: scale(1.05);
		text-shadow: 0 0 25px rgba(255, 215, 0, 1);
	}
}

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

@keyframes urgencyBlink {
	0%,
	100% {
		opacity: 1;
		box-shadow: 0 0 10px rgba(255, 71, 87, 0.3);
	}
	50% {
		opacity: 0.7;
		box-shadow: 0 0 20px rgba(255, 71, 87, 0.6);
	}
}

.modern-hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, #ff6b35 0%, #f73e1e 100%);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.modern-hero-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
	background: linear-gradient(135deg, #f82424 0%, #ff6b35 100%);
	border-color: rgba(255, 255, 255, 0.2);
	color: white;
}

.modern-hero-btn i {
	transition: transform 0.3s ease;
}

.modern-hero-btn:hover i {
	transform: translateX(5px);
}

@keyframes slowZoom {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.05);
	}
}

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

/* Responsive Design */
@media (max-width: 1024px) {
	.modern-hero-title {
		font-size: 3.5rem;
	}

	.modern-hero-subtitle {
		font-size: 1.3rem;
	}
}

@media (max-width: 768px) {
	.modern-hero {
		height: 80vh;
		min-height: 500px;
	}

	.bg-video {
		/* Ensure video plays properly on mobile */
		object-position: center center;
	}

	.hero-overlay {
		/* Stronger overlay on mobile for better text readability */
		background: rgba(0, 0, 0, 0.6);
		backdrop-filter: blur(2px);
	}

	.modern-hero-title {
		font-size: 2.8rem;
		margin-bottom: 1rem;
	}

	.modern-hero-subtitle {
		font-size: 1.1rem;
		margin-bottom: 2rem;
		padding: 1rem 1.5rem;
		backdrop-filter: blur(8px);
	}

	.coin-highlight {
		font-size: 1.1em;
		display: block;
		margin: 0.5rem 0;
	}

	.coin-highlight::before,
	.coin-highlight::after {
		left: -20px;
		right: -20px;
		font-size: 1em;
	}

	.limited-time {
		font-size: 0.8em;
		padding: 0.2rem 0.6rem;
		display: block;
		margin-top: 0.5rem;
	}

	.register-link {
		font-size: 1em;
		display: inline-block;
		margin-bottom: 0.3rem;
	}

	.modern-hero-btn {
		padding: 0.9rem 2rem;
		font-size: 1rem;
	}

	.hero-container {
		padding: 0 1.5rem;
	}
}

@media (max-width: 480px) {
	.modern-hero-title {
		font-size: 2.2rem;
	}

	.modern-hero-subtitle {
		font-size: 1rem;
		padding: 1rem;
		backdrop-filter: blur(6px);
	}

	.coin-highlight {
		font-size: 1em;
		margin: 0.3rem 0;
	}

	.coin-highlight::before,
	.coin-highlight::after {
		display: none; /* Hide coin emojis on very small screens for cleaner look */
	}

	.limited-time {
		font-size: 0.75em;
		padding: 0.2rem 0.5rem;
		margin-top: 0.3rem;
	}

	.register-link {
		font-size: 0.95em;
	}

	.modern-hero-btn {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}

	.hero-container {
		padding: 0 1rem;
	}
}

/* Modern About Section */
.modern-about {
	padding: 4rem 0;
	background: var(--bg-secondary);
	position: relative;
}

.about-content {
	position: relative;
	z-index: 2;
}

.section-header-modern {
	text-align: center;
	margin-bottom: 3rem;
}

.section-badge-modern {
	background: var(--primary-glow);
	color: white;
	padding: 0.4rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 1rem;
}

.section-title-modern {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.section-description-modern {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.5;
}

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

.about-card-modern {
	background: var(--bg-card);
	border-radius: 15px;
	padding: 2rem;
	border: 2px solid var(--border-glow);
	transition: all 0.3s ease;
	text-align: center;
}

.about-card-modern:hover {
	transform: translateY(-5px);
	border-color: var(--primary-glow);
	box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.card-icon-modern {
	width: 60px;
	height: 60px;
	background: var(--primary-glow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	margin: 0 auto 1rem;
}

.about-card-modern h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.about-card-modern p {
	color: var(--text-secondary);
	line-height: 1.5;
	font-size: 0.95rem;
}

.about-stats-modern {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1.5rem;
	margin: 3rem 0;
}

.stat-item-modern {
	text-align: center;
	padding: 1.5rem;
	background: var(--bg-card);
	border-radius: 12px;
	border: 2px solid var(--border-glow);
	transition: all 0.3s ease;
}

.stat-item-modern:hover {
	transform: translateY(-3px);
	border-color: var(--primary-glow);
	box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}

.stat-number-modern {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-glow);
	display: block;
	margin-bottom: 0.5rem;
}

.stat-label-modern {
	color: var(--text-secondary);
	font-size: 0.9rem;
	font-weight: 500;
}

.about-cta-modern {
	text-align: center;
	margin-top: 3rem;
}

.btn-modern {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-primary-modern {
	background: var(--primary-glow);
	color: white;
	border: none;
}

.btn-primary-modern:hover {
	background: var(--secondary-glow);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
	color: white;
}

/* Modern How It Works Section */
.modern-how-it-works {
	padding: 4rem 0;
	background: var(--bg-primary);
}

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

.step-item {
	text-align: center;
}

.step-number {
	width: 50px;
	height: 50px;
	background: var(--primary-glow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	color: white;
	margin: 0 auto 1rem;
}

.step-content {
	background: var(--bg-card);
	border-radius: 15px;
	padding: 2rem;
	border: 2px solid var(--border-glow);
	transition: all 0.3s ease;
}

.step-content:hover {
	transform: translateY(-5px);
	border-color: var(--primary-glow);
	box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.step-icon {
	width: 50px;
	height: 50px;
	background: var(--primary-glow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: white;
	margin: 0 auto 1rem;
}

.step-content h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.8rem;
}

.step-content p {
	color: var(--text-secondary);
	line-height: 1.5;
	font-size: 0.9rem;
}

.step-connector {
	display: none;
}

.how-it-works-cta {
	text-align: center;
	margin-top: 3rem;
}

.animate-card {
	opacity: 1;
	transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
	.modern-about,
	.modern-how-it-works {
		padding: 3rem 0;
	}

	.about-grid-modern {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.about-card-modern {
		padding: 1.5rem;
	}

	.about-stats-modern {
		grid-template-columns: repeat(2, 1fr);
	}

	.steps-container {
		grid-template-columns: 1fr;
	}

	.section-title-modern {
		font-size: 2rem;
	}

	.section-description-modern {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.about-stats-modern {
		grid-template-columns: 1fr;
	}

	.step-content {
		padding: 1.5rem;
	}

	.btn-modern {
		padding: 0.8rem 1.2rem;
		font-size: 0.85rem;
	}
}

/* Testimonials Slider Section */
.testimonials-slider-section {
	padding: 4rem 0;
	background: var(--bg-primary);
}

.testimonials-slider {
	margin: 3rem 0;
}

.testimonial-slide {
	padding: 0 1rem;
}

.testimonial-card-modern {
	background: var(--bg-card);
	border-radius: 15px;
	padding: 2rem;
	border: 2px solid var(--border-glow);
	transition: all 0.3s ease;
	height: 100%;
	display: flex !important;
	flex-direction: column;
}

.testimonial-card-modern:hover {
	transform: translateY(-5px);
	border-color: var(--primary-glow);
	box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

.testimonial-stars {
	color: #fbbf24;
	font-size: 1rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.testimonial-card-modern p {
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: 0.95rem;
	font-style: italic;
	flex: 1;
	margin-bottom: 1.5rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: auto;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--primary-glow);
}

.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info strong {
	color: var(--text-primary);
	display: block;
	margin-bottom: 0.2rem;
	font-weight: 600;
}

.author-info span {
	color: var(--text-secondary);
	font-size: 0.85rem;
}

/* Slick Slider Custom Styles */
.testimonials-slider .slick-dots {
	bottom: -50px;
}

.testimonials-slider .slick-dots li button:before {
	font-size: 12px;
	color: var(--primary-glow);
	opacity: 0.5;
}

.testimonials-slider .slick-dots li.slick-active button:before {
	opacity: 1;
	color: var(--primary-glow);
}

.testimonials-slider .slick-arrow {
	width: 40px;
	height: 40px;
	background: var(--primary-glow);
	border-radius: 50%;
	z-index: 2;
}

.testimonials-slider .slick-arrow:before {
	font-size: 16px;
	color: white;
}

.testimonials-slider .slick-prev {
	left: -60px;
}

.testimonials-slider .slick-next {
	right: -60px;
}

.testimonials-slider .slick-arrow:hover {
	background: var(--secondary-glow);
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
	.testimonials-slider-section {
		padding: 3rem 0;
	}

	.testimonial-slide {
		padding: 0 0.5rem;
	}

	.testimonial-card-modern {
		padding: 1.5rem;
	}

	.testimonials-slider .slick-prev,
	.testimonials-slider .slick-next {
		display: none !important;
	}

	.testimonials-slider .slick-dots {
		bottom: -30px;
	}
}

@media (max-width: 480px) {
	.testimonial-card-modern {
		padding: 1.2rem;
	}

	.author-avatar {
		width: 40px;
		height: 40px;
	}

	.testimonial-card-modern p {
		font-size: 0.9rem;
	}
}

/* Values Section */
.values-section {
	padding: 4rem 0;
	background: var(--bg-secondary);
}

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

.value-item {
	text-align: center;
	padding: 2rem;
	background: var(--bg-card);
	border-radius: 15px;
	border: 2px solid var(--border-glow);
	transition: all 0.3s ease;
}

.value-item:hover {
	transform: translateY(-5px);
	border-color: var(--primary-glow);
	box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

.value-icon {
	width: 80px;
	height: 80px;
	background: var(--primary-glow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	margin: 0 auto 1.5rem;
}

.value-item h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.value-item p {
	color: var(--text-secondary);
	line-height: 1.5;
	font-size: 0.95rem;
}

/* Responsive Design for Values */
@media (max-width: 768px) {
	.values-section {
		padding: 3rem 0;
	}

	.values-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.value-item {
		padding: 1.5rem;
	}

	.value-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}
}

@media (max-width: 480px) {
	.value-item {
		padding: 1.2rem;
	}

	.value-icon {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}

	.value-item h3 {
		font-size: 1.1rem;
	}

	.value-item p {
		font-size: 0.9rem;
	}
}

/* Modern Game Features Section */
.premium-slot-features {
	padding: 4rem 0;
	background: var(--bg-primary);
}

.features-grid-modern {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card-modern {
	background: var(--bg-card);
	border-radius: 20px;
	padding: 2.5rem;
	border: 2px solid var(--border-glow);
	transition: all 0.4s ease;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.feature-card-modern::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 107, 53, 0.02) 0%,
		rgba(255, 64, 129, 0.02) 100%
	);
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: 20px;
}

.feature-card-modern:hover::before {
	opacity: 1;
}

.feature-card-modern:hover {
	transform: translateY(-10px);
	border-color: var(--primary-glow);
	box-shadow: 0 15px 35px rgba(255, 107, 53, 0.15);
}

.feature-icon-modern {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	margin: 0 auto 2rem;
	position: relative;
	z-index: 2;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card-modern h3 {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
}

.feature-card-modern p {
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: 0.95rem;
	position: relative;
	z-index: 2;
}

/* Responsive Design for Game Features */
@media (max-width: 768px) {
	.premium-slot-features {
		padding: 3rem 0;
	}

	.features-grid-modern {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.feature-card-modern {
		padding: 2rem;
	}

	.feature-icon-modern {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}
}

@media (max-width: 480px) {
	.feature-card-modern {
		padding: 1.5rem;
	}

	.feature-icon-modern {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
		margin-bottom: 1rem;
	}

	.feature-card-modern h3 {
		font-size: 1.2rem;
	}

	.feature-card-modern p {
		font-size: 0.9rem;
	}
}
