/* 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(238, 53, 255, 0.4);
}

.spin-btn:hover {
	box-shadow: 0 0 30px rgba(174, 53, 255, 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 1fr;
	gap: 3rem;
	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: 1rem;
	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;
	position: relative;
	padding-top: 4rem;
}

.testimonial-avatar {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.avatar-circle {
	width: 80px;
	height: 80px;
	background: linear-gradient(
		45deg,
		var(--primary-glow),
		var(--secondary-glow)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 2rem;
	box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
	border: 3px solid var(--bg-primary);
}

.avatar-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
	border: 3px solid var(--primary-glow);
}

.avatar-circle.male {
	background: linear-gradient(45deg, #7c3aed, #06ffa5);
	box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.avatar-circle.female {
	background: linear-gradient(45deg, #06ffa5, #00d4ff);
	box-shadow: 0 4px 15px rgba(6, 255, 165, 0.4);
}

.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 {
		flexpolicy: none;
	}

	.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 1.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(191, 53, 255, 0.2);
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(191, 53, 255, 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(191, 53, 255, 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(191, 53, 255, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 50px rgba(191, 53, 255, 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;
	}
}

/* About Hero Section with Decorative Games */
.about-hero {
	position: relative;
	overflow: hidden;
}

.about-hero-content {
	display: flex;
	align-items: center;
	justify-content: center;

	position: relative;
	z-index: 10;
	text-align: center;
}

.hero-decoration {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.floating-games {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.floating-game {
	position: absolute;
	width: 80px;
	height: 80px;
	border-radius: 12px;
	object-fit: cover;
	opacity: 0.8;
	filter: blur(0.5px);
	animation: float 6s ease-in-out infinite;
	border: 2px solid rgba(255, 107, 53, 0.5);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.floating-game:hover {
	opacity: 1;
	filter: blur(0);
	transform: scale(1.1);
	transition: all 0.3s ease;
}

/* Individual game positioning and animation delays */
.game-1 {
	top: 15%;
	left: 10%;
	animation-delay: 0s;
	animation-duration: 8s;
}

.game-2 {
	top: 25%;
	right: 15%;
	animation-delay: -2s;
	animation-duration: 7s;
}

.game-3 {
	bottom: 30%;
	left: 8%;
	animation-delay: -4s;
	animation-duration: 9s;
}

.game-4 {
	top: 60%;
	right: 10%;
	animation-delay: -1s;
	animation-duration: 6s;
}

.game-5 {
	top: 45%;
	left: 25%;
	animation-delay: -3s;
	animation-duration: 8s;
}

.game-6 {
	bottom: 15%;
	right: 25%;
	animation-delay: -5s;
	animation-duration: 7s;
}

/* Floating animation */
@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	25% {
		transform: translateY(-15px) rotate(2deg);
	}
	50% {
		transform: translateY(-10px) rotate(-1deg);
	}
	75% {
		transform: translateY(-20px) rotate(1deg);
	}
}

/* Mobile responsiveness for about hero */
@media (max-width: 768px) {
	.about-hero {
		padding-top: 4rem;
	}

	.about-hero-content {
		text-align: center;
		padding-top: 2rem;
	}

	.floating-game {
		width: 60px;
		height: 60px;
		opacity: 0.5;
		filter: blur(2px);
	}

	/* Adjust positions for mobile */
	.game-1 {
		top: 10%;
		left: 5%;
	}

	.game-2 {
		top: 20%;
		right: 8%;
	}

	.game-3 {
		bottom: 25%;
		left: 3%;
	}

	.game-4 {
		top: 55%;
		right: 5%;
	}

	.game-5 {
		top: 40%;
		left: 15%;
	}

	.game-6 {
		bottom: 10%;
		right: 15%;
	}
}

/* Enhanced Free Social Gaming Section */
.free-social-gaming {
	position: relative;
	padding: 6rem 0;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
	overflow: hidden;
}

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

.floating-symbols {
	position: absolute;
	width: 100%;
	height: 100%;
}

.symbol-float {
	position: absolute;
	font-size: 3rem;
	opacity: 0.1;
	animation: symbolFloat 8s ease-in-out infinite;
}

.symbol-1 {
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}
.symbol-2 {
	top: 20%;
	right: 15%;
	animation-delay: 1s;
}
.symbol-3 {
	bottom: 30%;
	left: 20%;
	animation-delay: 2s;
}
.symbol-4 {
	top: 60%;
	right: 10%;
	animation-delay: 3s;
}
.symbol-5 {
	bottom: 20%;
	right: 25%;
	animation-delay: 4s;
}
.symbol-6 {
	top: 40%;
	left: 5%;
	animation-delay: 5s;
}

@keyframes symbolFloat {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
		opacity: 0.1;
	}
	50% {
		transform: translateY(-30px) rotate(180deg);
		opacity: 0.3;
	}
}

.gaming-hero {
	position: relative;
	z-index: 2;
	text-align: center;
	margin-bottom: 4rem;
}

.gaming-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	margin-bottom: 2rem;
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
	animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
	}
}

.gaming-title {
	margin-bottom: 2rem;
}

.title-main {
	display: block;
	font-size: 4rem;
	font-weight: 800;
	background: linear-gradient(45deg, #00d4ff, #7c3aed, #06ffa5);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: titleGradient 3s ease-in-out infinite;
	margin-bottom: 1rem;
}

.title-sub {
	display: block;
	font-size: 1.5rem;
	color: #b0b0b0;
	font-weight: 300;
}

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

.gaming-description {
	font-size: 1.3rem;
	line-height: 1.6;
	color: #e0e0e0;
	max-width: 800px;
	margin: 0 auto;
}

.gaming-showcase {
	position: relative;
	z-index: 2;
	margin-bottom: 5rem;
}

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

.showcase-card {
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	transition: all 0.3s ease;
	overflow: hidden;
}

.showcase-card:hover {
	transform: translateY(-10px);
	border-color: rgba(0, 212, 255, 0.5);
	box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.card-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(45deg, #00d4ff, #7c3aed);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: white;
	box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
	animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

.showcase-card h3 {
	font-size: 1.5rem;
	color: white;
	margin-bottom: 1rem;
	font-weight: 600;
}

.showcase-card p {
	color: #b0b0b0;
	line-height: 1.6;
}

.card-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(0, 212, 255, 0.1) 0%,
		transparent 70%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.showcase-card:hover .card-glow {
	opacity: 1;
}

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

.feature-mega {
	text-align: center;
	padding: 2rem;
}

.mega-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2.5rem;
	color: white;
	box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
	animation: megaFloat 4s ease-in-out infinite;
}

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

.feature-mega h3 {
	font-size: 1.8rem;
	color: white;
	margin-bottom: 1rem;
	font-weight: 700;
}

.feature-mega p {
	color: #b0b0b0;
	font-size: 1.1rem;
	line-height: 1.6;
}

.gaming-cta {
	text-align: center;
	position: relative;
	z-index: 2;
}

.cta-content {
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.1),
		rgba(124, 58, 237, 0.1)
	);
	border: 2px solid rgba(0, 212, 255, 0.3);
	border-radius: 25px;
	padding: 3rem;
	backdrop-filter: blur(15px);
	max-width: 600px;
	margin: 0 auto;
}

.cta-content h3 {
	font-size: 2.5rem;
	color: white;
	margin-bottom: 1rem;
	font-weight: 700;
}

.cta-content p {
	font-size: 1.2rem;
	color: #b0b0b0;
	margin-bottom: 2rem;
}

.btn-gaming-cta {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	color: white;
	padding: 1.25rem 3rem;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
	position: relative;
	overflow: hidden;
}

.btn-gaming-cta:hover {
	transform: translateY(-3px);
	color: white;
}

.btn-gaming-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s;
}

.btn-gaming-cta:hover::before {
	left: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.free-social-gaming {
		padding: 4rem 0;
	}

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

	.title-sub {
		font-size: 1.2rem;
	}

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

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

	.showcase-card {
		padding: 2rem;
	}

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

	.cta-content {
		padding: 2rem;
	}

	.cta-content h3 {
		font-size: 2rem;
	}

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

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

	.gaming-badge {
		padding: 0.5rem 1rem;
		font-size: 0.9rem;
	}

	.card-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.mega-icon {
		width: 80px;
		height: 80px;
		font-size: 2rem;
	}

	.showcase-card h3 {
		font-size: 1.3rem;
	}

	.feature-mega h3 {
		font-size: 1.5rem;
	}
}
