/* ==========================================
   Sinu Kasiino - Homepage Styles V2
   Wow Effects + Lighter Backgrounds
   ========================================== */

/* ==========================================
   GLOBAL / RESET
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

.sinukasiino-main {
	font-family: 'Inter', sans-serif;
	color: #ffffff;
	overflow-x: hidden;
}

.sinukasiino-main *,
.sinukasiino-main *::before,
.sinukasiino-main *::after {
	box-sizing: border-box;
}

/* ==========================================
   HERO SECTION - Animated gradient + particles
   ========================================== */

.sk-hero-section {
	position: relative;
	padding: 100px 0 80px;
	background: linear-gradient(135deg, #1a0533 0%, #2d1158 35%, #1a0533 65%, #0f0122 100%);
	background-size: 300% 300%;
	animation: sk-hero-gradient 12s ease infinite;
	overflow: hidden;
	text-align: center;
}

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

/* Animated glow orbs */
.sk-hero-section::before {
	content: '';
	position: absolute;
	top: -100px;
	left: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	animation: sk-float-orb 8s ease-in-out infinite;
	pointer-events: none;
}

.sk-hero-section::after {
	content: '';
	position: absolute;
	bottom: -150px;
	right: -100px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(103, 58, 183, 0.2) 0%, transparent 70%);
	border-radius: 50%;
	animation: sk-float-orb 10s ease-in-out infinite reverse;
	pointer-events: none;
}

@keyframes sk-float-orb {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(30px, -20px) scale(1.05); }
	66% { transform: translate(-20px, 15px) scale(0.95); }
}

.sk-hero-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}

.sk-hero-content {
	animation: sk-fade-up 0.8s ease-out;
}

@keyframes sk-fade-up {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

.sk-hero-title {
	font-family: 'Poppins', sans-serif;
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 16px;
	background: linear-gradient(135deg, #ffffff 30%, #4CAF50 70%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -1px;
}

.sk-hero-subtitle {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 36px;
	font-weight: 400;
	letter-spacing: 0.3px;
}

/* Hero Feature Pills */
.sk-features-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sk-feature-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: rgba(76, 175, 80, 0.08);
	border: 1px solid rgba(76, 175, 80, 0.2);
	border-radius: 50px;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.85);
	transition: all 0.3s ease;
	animation: sk-fade-up 0.8s ease-out both;
}

.sk-feature-item:nth-child(1) { animation-delay: 0.1s; }
.sk-feature-item:nth-child(2) { animation-delay: 0.2s; }
.sk-feature-item:nth-child(3) { animation-delay: 0.3s; }
.sk-feature-item:nth-child(4) { animation-delay: 0.4s; }

.sk-feature-item:hover {
	background: rgba(76, 175, 80, 0.15);
	border-color: rgba(76, 175, 80, 0.4);
	transform: translateY(-2px);
}

.sk-feature-icon {
	color: #4CAF50;
	font-size: 1rem;
	font-weight: 700;
}

/* ==========================================
   FEATURED CASINO - Premium horizontal banner
   ========================================== */

.sk-featured-casino {
	padding: 0 0 8px;
	background: linear-gradient(180deg, #130228 0%, #1a0533 100%);
	position: relative;
}

.sk-featured-wrapper {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
}

/* Ambient glow behind the card */
.sk-featured-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 200%;
	background: radial-gradient(ellipse, rgba(76, 175, 80, 0.06) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.sk-featured-card {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto 180px 1fr auto;
	align-items: center;
	gap: 28px;
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.06) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(76, 175, 80, 0.04) 100%);
	border: 1px solid rgba(76, 175, 80, 0.15);
	border-radius: 20px;
	padding: 28px 36px;
	transition: all 0.4s ease;
	overflow: hidden;
}

.sk-featured-card::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(90deg, transparent 0%, rgba(76, 175, 80, 0.12) 30%, rgba(76, 175, 80, 0.2) 50%, rgba(76, 175, 80, 0.12) 70%, transparent 100%);
	background-size: 200% 100%;
	animation: sk-shimmer-h 3s linear infinite;
	border-radius: 22px;
	z-index: -1;
}

@keyframes sk-shimmer-h {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.sk-featured-card:hover {
	border-color: rgba(76, 175, 80, 0.3);
	box-shadow: 0 8px 40px rgba(76, 175, 80, 0.1), 0 0 80px rgba(76, 175, 80, 0.04);
	transform: translateY(-2px);
}

/* Rank column */
.sk-featured-rank {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.sk-featured-rank-hash {
	font-family: 'Poppins', sans-serif;
	font-size: 2.4rem;
	font-weight: 800;
	background: linear-gradient(180deg, #4CAF50, #2E7D32);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
}

.sk-featured-rank-label {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #4CAF50;
	white-space: nowrap;
}

/* Logo column */
.sk-featured-logo-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.sk-featured-logo-img {
	max-width: 160px;
	max-height: 70px;
	object-fit: contain;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.sk-featured-card:hover .sk-featured-logo-img {
	transform: scale(1.05);
}

.sk-featured-logo-text {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 1.2rem;
	color: #ffffff;
	text-align: center;
}

.sk-featured-stars {
	display: flex;
	align-items: center;
	gap: 2px;
}

.sk-star-filled {
	color: #FFD700;
	font-size: 1rem;
}

.sk-star-empty {
	color: rgba(255, 255, 255, 0.2);
	font-size: 1rem;
}

.sk-featured-rating-num {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.75rem;
	margin-left: 6px;
}

/* Info column */
.sk-featured-info-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sk-featured-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
}

.sk-featured-stats {
	display: flex;
	gap: 12px;
}

.sk-stat-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	min-width: 90px;
	transition: all 0.3s ease;
}

.sk-stat-box:hover {
	border-color: rgba(76, 175, 80, 0.2);
	background: rgba(76, 175, 80, 0.05);
}

.sk-stat-highlight {
	border-color: rgba(76, 175, 80, 0.25);
	background: rgba(76, 175, 80, 0.08);
}

.sk-stat-value {
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: #4CAF50;
	line-height: 1.2;
}

.sk-stat-label {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 2px;
}

.sk-featured-features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.sk-featured-feat-pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 12px;
	background: rgba(76, 175, 80, 0.08);
	border: 1px solid rgba(76, 175, 80, 0.15);
	border-radius: 50px;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
}

/* CTA column */
.sk-featured-cta-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.sk-featured-cta {
	padding: 14px 36px;
	font-size: 1rem;
	font-weight: 700;
	white-space: nowrap;
	animation: sk-pulse-glow 2s ease-in-out infinite;
}

@keyframes sk-pulse-glow {
	0%, 100% { box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3); }
	50% { box-shadow: 0 4px 25px rgba(76, 175, 80, 0.5), 0 0 40px rgba(76, 175, 80, 0.15); }
}

.sk-featured-tc {
	font-size: 0.65rem;
	color: rgba(255, 255, 255, 0.3);
	text-align: center;
}

/* Featured responsive */
@media (max-width: 1024px) {
	.sk-featured-card {
		grid-template-columns: auto 140px 1fr auto;
		gap: 20px;
		padding: 24px 28px;
	}
	.sk-stat-box {
		padding: 8px 14px;
		min-width: 80px;
	}
	.sk-stat-value {
		font-size: 1.1rem;
	}
}

@media (max-width: 768px) {
	.sk-featured-card {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 28px 24px;
		gap: 16px;
	}
	.sk-featured-rank {
		flex-direction: row;
		gap: 10px;
		justify-content: center;
	}
	.sk-featured-rank-hash {
		font-size: 1.8rem;
	}
	.sk-featured-stats {
		justify-content: center;
	}
	.sk-featured-features {
		justify-content: center;
	}
	.sk-featured-info-col {
		align-items: center;
	}
}

/* ==========================================
   BUTTONS - Glossy with pulse
   ========================================== */

.sk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 32px;
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.sk-btn-primary {
	background: linear-gradient(135deg, #4CAF50, #2E7D32);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.sk-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(76, 175, 80, 0.45);
}

.sk-btn-primary::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
	transform: rotate(45deg);
	transition: all 0.5s ease;
}

.sk-btn-primary:hover::after {
	left: 100%;
}

/* ==========================================
   FILTER TABS - Pill style with glow
   ========================================== */

.sk-filter-section {
	padding: 32px 0 0;
	background: #1a0533;
	position: sticky;
	top: 72px;
	z-index: 100;
	transition: box-shadow 0.3s ease;
}

.sk-filter-section.sk-filter-stuck {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.sk-filter-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.sk-filter-tabs {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 24px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.sk-filter-tabs::-webkit-scrollbar {
	display: none;
}

.sk-filter-btn {
	padding: 10px 22px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.7);
	font-family: 'Inter', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.sk-filter-btn:hover {
	background: rgba(76, 175, 80, 0.1);
	border-color: rgba(76, 175, 80, 0.3);
	color: #ffffff;
}

.sk-filter-btn.sk-filter-active {
	background: linear-gradient(135deg, #4CAF50, #2E7D32);
	border-color: transparent;
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* ==========================================
   CASINO GRID - Cards with hover wow
   ========================================== */

.sk-casino-section {
	padding: 48px 0 64px;
	background: linear-gradient(180deg, #1a0533 0%, #1e0a3a 50%, #1a0533 100%);
}

.sk-casino-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.sk-casino-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.sk-casino-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	animation: sk-card-appear 0.6s ease-out both;
}

.sk-casino-card:nth-child(1) { animation-delay: 0.05s; }
.sk-casino-card:nth-child(2) { animation-delay: 0.1s; }
.sk-casino-card:nth-child(3) { animation-delay: 0.15s; }
.sk-casino-card:nth-child(4) { animation-delay: 0.2s; }

@keyframes sk-card-appear {
	from { opacity: 0; transform: translateY(20px) scale(0.97); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.sk-casino-card:hover {
	transform: translateY(-8px);
	border-color: rgba(76, 175, 80, 0.3);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(76, 175, 80, 0.08);
}

.sk-card-inner {
	padding: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* Position Badge */
.sk-card-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 5;
}

.sk-badge-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(46, 125, 50, 0.9));
	border-radius: 50%;
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Label Badge */
.sk-card-label {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 5;
}

.sk-label-text {
	display: inline-block;
	padding: 4px 12px;
	background: linear-gradient(135deg, #FFD700, #FFA000);
	color: #1a0533;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	border-radius: 50px;
}

/* Logo Area */
.sk-card-logo-area {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 36px 20px 16px;
	min-height: 120px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
}

.sk-card-logo {
	max-width: 160px;
	max-height: 80px;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.sk-casino-card:hover .sk-card-logo {
	transform: scale(1.05);
}

.sk-card-logo-placeholder {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
}

/* Card Content */
.sk-card-content {
	padding: 0 20px;
	flex: 1;
}

.sk-card-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 6px;
}

.sk-card-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
}

.sk-card-rating-stars {
	color: #FFD700;
	font-size: 0.9rem;
	letter-spacing: 1px;
}

.sk-card-rating-value {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.78rem;
}

/* Bonus Info */
.sk-card-bonus {
	margin-bottom: 12px;
}

.sk-bonus-line {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.88rem;
	margin: 0 0 3px 0;
}

.sk-bonus-line strong {
	color: #4CAF50;
}

.sk-spins-line {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.82rem;
	margin: 0;
}

.sk-spins-line strong {
	color: #81C784;
}

/* Features Tags */
.sk-card-features {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 16px;
}

.sk-feature-tag {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.78rem;
}

/* Card Footer / CTA */
.sk-card-footer {
	padding: 16px 20px 20px;
	margin-top: auto;
}

.sk-card-btn {
	display: block;
	width: 100%;
	text-align: center;
	padding: 12px 20px;
	font-size: 0.9rem;
}

/* ==========================================
   SEO CONTENT - Lighter background with glass
   ========================================== */

.sk-content-section {
	padding: 64px 0;
	background: linear-gradient(180deg, #1a0533 0%, #241048 50%, #1a0533 100%);
	position: relative;
}

/* Subtle decorative glow */
.sk-content-section::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(76, 175, 80, 0.03) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.sk-content-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}

/* Table of Contents - Glass style */
.sk-table-of-contents {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	margin-bottom: 40px;
	overflow: hidden;
}

.sk-toc-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 18px 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 600;
}

.sk-toc-icon {
	font-size: 0.8rem;
	transition: transform 0.3s ease;
	color: rgba(255, 255, 255, 0.5);
}

.sk-toc-toggle[aria-expanded="true"] .sk-toc-icon {
	transform: rotate(180deg);
}

.sk-toc-content {
	padding: 0 24px 18px;
}

.sk-toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sk-toc-list li {
	margin-bottom: 8px;
}

.sk-toc-list li a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.2s ease;
}

.sk-toc-list li a:hover {
	color: #4CAF50;
	padding-left: 4px;
}

.sk-toc-h3 {
	list-style: none;
	padding-left: 20px;
	margin-top: 6px;
}

/* Page Content - Lighter prose */
.sk-page-content {
	color: rgba(255, 255, 255, 0.75);
	font-size: 1rem;
	line-height: 1.8;
}

.sk-page-content h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	color: #ffffff;
	margin: 48px 0 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid rgba(76, 175, 80, 0.2);
}

.sk-page-content h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	margin: 32px 0 12px;
}

.sk-page-content p {
	margin-bottom: 16px;
}

.sk-page-content a {
	color: #4CAF50;
	text-decoration: none;
	transition: color 0.2s ease;
}

.sk-page-content a:hover {
	color: #81C784;
}

.sk-page-content ul,
.sk-page-content ol {
	margin: 0 0 16px 24px;
	color: rgba(255, 255, 255, 0.7);
}

.sk-page-content li {
	margin-bottom: 6px;
}

/* ==========================================
   FAQ - Accordion with smooth animations
   ========================================== */

.sk-faq-section {
	padding: 64px 0 80px;
	background: linear-gradient(180deg, #1a0533 0%, #130228 100%);
}

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

.sk-faq-title {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	margin-bottom: 36px;
}

.sk-faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sk-faq-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.sk-faq-item:hover {
	border-color: rgba(255, 255, 255, 0.12);
}

.sk-faq-item.sk-faq-open {
	border-color: rgba(76, 175, 80, 0.2);
	background: rgba(76, 175, 80, 0.03);
}

.sk-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 18px 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	color: #ffffff;
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	text-align: left;
	transition: color 0.2s ease;
}

.sk-faq-question:hover {
	color: #4CAF50;
}

.sk-faq-toggle {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.4);
	transition: transform 0.3s ease, color 0.3s ease;
	flex-shrink: 0;
	margin-left: 16px;
}

.sk-faq-open .sk-faq-toggle {
	transform: rotate(45deg);
	color: #4CAF50;
}

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

.sk-faq-open .sk-faq-answer {
	max-height: 300px;
	padding: 0 24px 18px;
}

.sk-faq-answer p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.9rem;
	line-height: 1.7;
	margin: 0;
}

/* ==========================================
   NO RESULTS
   ========================================== */

.sk-no-casinos {
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 1rem;
	padding: 48px 0;
	grid-column: 1 / -1;
}

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */

@media (max-width: 1024px) {
	.sk-casino-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (max-width: 768px) {
	.sk-hero-section {
		padding: 64px 0 48px;
	}

	.sk-hero-title {
		font-size: 2rem;
	}

	.sk-hero-subtitle {
		font-size: 1rem;
	}

	.sk-features-list {
		flex-direction: column;
		align-items: center;
	}

	.sk-featured-container {
		flex-direction: column;
		text-align: center;
		padding: 28px 24px;
	}

	.sk-featured-rating {
		justify-content: center;
	}

	.sk-filter-tabs {
		gap: 6px;
	}

	.sk-filter-btn {
		padding: 8px 16px;
		font-size: 0.8rem;
	}

	.sk-casino-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.sk-faq-title {
		font-size: 1.6rem;
	}
}

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

	.sk-featured-title {
		font-size: 1.4rem;
	}

	.sk-filter-section {
		top: 60px;
	}
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */

.sk-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.sk-reveal.sk-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Fix white gap between body and footer */
.site-content {
	margin-bottom: 0 !important;
}
