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

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #FF6B35;
	--primary-dark: #E85A2B;
	--primary-light: #FF8C5A;
	--secondary: #4ECDC4;
	--secondary-dark: #3BA8A1;
	--accent: #FFD93D;
	--dark: #1A1A2E;
	--dark-light: #2D2D44;
	--text: #2C3E50;
	--text-light: #6C757D;
	--bg: #F8F9FA;
	--white: #FFFFFF;
	--success: #28A745;
	--warning: #FFC107;
	--danger: #DC3545;
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
	--shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.2);
	--gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
	--gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #3BA8A1 100%);
	--gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--border-radius: 12px;
	--border-radius-lg: 20px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.7;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Header Styles */
.site-header {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.header-wrapper {
	background: linear-gradient(90deg, rgba(255, 107, 53, 0.03) 0%, transparent 100%);
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	gap: 32px;
}

.header-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: var(--transition);
	gap: 12px;
	flex-shrink: 0;
}

.header-logo:hover {
	transform: translateY(-2px);
}

.header-logo img {
	transition: var(--transition);
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: none;
}

@media (min-width: 1024px) {
	.logo-text {
		display: block;
	}
}

.header-nav {
	display: flex;
	flex: 1;
	justify-content: center;
}

.header-nav[aria-expanded="false"] {
	display: flex;
}

.nav-list {
	display: flex;
	list-style: none;
	gap: 4px;
	align-items: center;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	justify-content: center;
}

.nav-item {
	margin: 0;
}

.nav-link {
	text-decoration: none;
	color: var(--text);
	font-size: 15px;
	font-weight: 500;
	padding: 10px 18px;
	border-radius: 10px;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	display: block;
	font-family: 'Inter', sans-serif;
}

.nav-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0;
	transition: var(--transition);
	z-index: -1;
	border-radius: 10px;
}

.nav-link:hover {
	color: var(--white);
	transform: translateY(-2px);
}

.nav-link:hover::before {
	opacity: 1;
}

.nav-link--highlight {
	background: var(--gradient-primary);
	color: var(--white);
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.nav-link--highlight:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.nav-link--highlight::before {
	display: none;
}

.mobile-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 2px solid var(--bg);
	border-radius: 10px;
	cursor: pointer;
	padding: 0;
	z-index: 100;
	position: relative;
	transition: var(--transition);
	flex-shrink: 0;
}

.mobile-menu-toggle:hover {
	background: var(--bg);
	border-color: var(--primary);
}

.mobile-menu-toggle[aria-expanded="true"] {
	background: var(--primary);
	border-color: var(--primary);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line {
	background: var(--white);
}

.hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	gap: 5px;
}

.hamburger-line {
	width: 22px;
	height: 2.5px;
	background: var(--text);
	border-radius: 2px;
	transition: var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Main Content */
main {
	max-width: 1200px;
	margin: 32px auto;
	padding: 0 24px;
}

/* Hero Section */
.hero {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding: 40px;
	background: var(--white);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-md);
	margin-bottom: 32px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(30%, -30%);
	pointer-events: none;
}

.hero__info {
	width: calc(100% - 280px);
	position: relative;
	z-index: 1;
}

.hero h1 {
	width: 100%;
	margin-bottom: 24px;
	line-height: 1.3;
	font-family: 'Poppins', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: var(--dark);
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero__info table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 24px;
}

.hero__info table tbody {
	width: 100%;
}

.hero__info table td {
	padding: 16px;
	vertical-align: top;
	border-top: 2px solid var(--bg);
	background: var(--bg);
	border-radius: 8px;
	margin-right: 12px;
}

.hero__info table tr:first-child td {
	border-top: none;
}

.hero__table-heading {
	font-weight: 600;
	color: var(--text-light);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.hero__table-text {
	font-weight: 700;
	color: var(--primary);
	font-size: 18px;
	margin: 0;
}

.hero__box {
	width: 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero__thumb {
	display: block;
	width: 180px;
	height: 180px;
	margin: 0 auto 20px;
	overflow: hidden;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-lg);
	transition: var(--transition);
	background: var(--white);
	padding: 12px;
}

.hero__thumb:hover {
	transform: translateY(-8px) scale(1.05);
	box-shadow: var(--shadow-xl);
}

.hero__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: var(--border-radius);
}

.hero__button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 56px;
	padding: 14px 24px;
	border-radius: var(--border-radius);
	background: var(--gradient-primary);
	border: none;
	outline: none;
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	line-height: 1.3;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	box-shadow: var(--shadow-md);
	position: relative;
	overflow: hidden;
}

.hero__button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.hero__button:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-xl);
}

.hero__button:hover::before {
	width: 300px;
	height: 300px;
}

.hero__button:active {
	transform: translateY(-2px);
}

/* Content Section */
.content {
	margin-top: 32px;
	padding: 40px;
	background: var(--white);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-md);
}

.content p {
	margin-bottom: 20px;
	line-height: 1.8;
	color: var(--text);
	font-size: 17px;
}

.content a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 2px solid transparent;
	transition: var(--transition);
}

.content a:hover {
	color: var(--primary-dark);
	border-bottom-color: var(--primary);
}

.content ul, .content ol {
	margin-bottom: 24px;
	padding-left: 28px;
}

.content li {
	margin-bottom: 12px;
	line-height: 1.8;
}

.content img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 32px auto;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.content img:hover {
	transform: scale(1.02);
	box-shadow: var(--shadow-lg);
}

.alighnright {
	float: right;
	margin: 0 0 24px 24px;
	border-radius: var(--border-radius);
}

.content h1 {
	margin-bottom: 32px;
	color: var(--dark);
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.2;
}

.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
	color: var(--dark);
	margin: 32px 0 20px;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 1.3;
}

.content h2 {
	font-size: 32px;
	border-bottom: 3px solid var(--primary);
	padding-bottom: 12px;
}

.content h3 {
	font-size: 26px;
	color: var(--primary);
}

.content h4 {
	font-size: 22px;
}

.content strong {
	font-weight: 600;
	color: var(--dark);
}

.content table {
	width: 100%;
	border-collapse: collapse;
	margin: 32px 0;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.content table, .content th, .content td {
	border: 1px solid #e9ecef;
}

.content th, .content td {
	padding: 16px;
	text-align: left;
}

.content th {
	background: var(--gradient-primary);
	color: var(--white);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.5px;
}

.content td {
	background: var(--white);
}

.content tr:nth-child(even) td {
	background: var(--bg);
}

.content blockquote {
	border-left: 4px solid var(--primary);
	padding: 20px 24px;
	margin: 32px 0;
	font-style: italic;
	color: var(--text-light);
	background: var(--bg);
	border-radius: var(--border-radius);
}

/* Breadcrumbs */
.breadcrumbs {
	margin-bottom: 24px;
	padding: 12px 0;
	font-size: 14px;
}

.breadcrumbs a {
	color: var(--primary);
	text-decoration: none;
	transition: var(--transition);
}

.breadcrumbs a:hover {
	color: var(--primary-dark);
	text-decoration: underline;
}

.breadcrumbs__arrow {
	color: var(--text-light);
	margin: 0 8px;
}

.breadcrumbs__last {
	color: var(--text-light);
	font-weight: 500;
}

/* Button Styles */
.play__button-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin: 32px 0;
}

.play__button {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 52px;
	padding: 14px 28px;
	border-radius: var(--border-radius);
	background: var(--gradient-primary);
	border: none;
	outline: none;
	color: var(--white);
	font-size: 17px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	line-height: 1.3;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	box-shadow: var(--shadow-md);
	position: relative;
	overflow: hidden;
}

.play__button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.play__button:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}

.play__button:hover::before {
	width: 300px;
	height: 300px;
}

.play__button:active {
	transform: translateY(-1px);
}

/* Casinos List */
.casinos-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 32px 0;
}

.casino-item {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 24px;
	border: 2px solid #e9ecef;
	border-radius: var(--border-radius-lg);
	transition: var(--transition);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.casino-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.casino-item .play__button {
	display: flex;
	margin-right: 0;
}

.casino-logo {
	width: 120px;
	flex-shrink: 0;
}

.casino-logo img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0;
	border-radius: var(--border-radius);
	transition: var(--transition);
}

.casino-item:hover .casino-logo img {
	transform: scale(1.05);
}

.casino-info {
	flex: 1;
}

.casino-info h3 {
	margin-top: 0;
	padding-top: 0;
	color: var(--primary);
	margin-bottom: 12px;
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	font-weight: 700;
}

.casino-info h3::before {
	display: none;
}

.casino-info p {
	margin-bottom: 8px;
	color: var(--text-light);
	font-size: 15px;
}

.casino-button {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 52px;
	padding: 14px 28px;
	border-radius: var(--border-radius);
	background: var(--gradient-primary);
	border: none;
	outline: none;
	color: var(--white);
	font-size: 17px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	line-height: 1.3;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	box-shadow: var(--shadow-md);
	white-space: nowrap;
}

.casino-button:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
	background: var(--gradient-primary);
}

/* FAQ Styles */
.faq {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 2px solid #e9ecef;
}

.faq h2 {
	margin-bottom: 32px;
	font-family: 'Poppins', sans-serif;
	font-size: 36px;
	font-weight: 800;
	color: var(--dark);
		text-align: center;
	border-bottom: none;
	padding-bottom: 0;
}

.faq-item {
	padding: 24px;
	border-bottom: 2px solid #e9ecef;
	margin-bottom: 20px;
	background: var(--bg);
	border-radius: var(--border-radius);
	transition: var(--transition);
}

.faq-item:hover {
	background: var(--white);
	box-shadow: var(--shadow-sm);
	transform: translateX(4px);
}

.faq h3 {
	color: var(--dark);
	margin-bottom: 12px;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 700;
}

.faq-item p {
	margin-bottom: 0;
	color: var(--text);
	line-height: 1.8;
}

/* Footer Styles */
.site-footer {
	background: linear-gradient(180deg, #1A1A2E 0%, #0F0F1E 100%);
	color: var(--white);
	margin-top: 80px;
	position: relative;
	overflow: hidden;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--gradient-primary);
	box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.site-footer::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(30%, -30%);
	pointer-events: none;
}

.footer-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 32px;
	position: relative;
	z-index: 1;
}

.footer-main {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 64px;
	padding: 64px 0 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
	display: flex;
	flex-direction: column;
}

.footer-section--brand {
	max-width: 500px;
}

.footer-section--links {
	justify-content: flex-start;
}

.footer-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: var(--transition);
	gap: 16px;
	margin-bottom: 24px;
	padding: 12px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	width: fit-content;
}

.footer-logo:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 107, 53, 0.3);
	box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.footer-logo img {
	filter: none;
	transition: var(--transition);
	width: 79px;
	height: 46px;
	opacity: 1;
	background: rgba(255, 255, 255, 0.95);
	padding: 8px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-logo:hover img {
	transform: scale(1.08);
	filter: drop-shadow(0 4px 16px rgba(255, 107, 53, 0.6));
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
	background: rgba(255, 255, 255, 1);
}

.footer-logo-text {
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	letter-spacing: 0.5px;
	transition: var(--transition);
}

.footer-logo:hover .footer-logo-text {
	color: rgba(255, 255, 255, 1);
	text-shadow: 0 2px 12px rgba(255, 107, 53, 0.4);
}

.footer-description {
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	line-height: 1.7;
	margin: 0;
}

.footer-title {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 12px;
}

.footer-title::after {
	content: '';
		position: absolute;
	bottom: 0;
		left: 0;
	width: 40px;
	height: 3px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.footer-nav {
	margin: 0;
}

.footer-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
		display: flex;
		flex-direction: column;
	gap: 12px;
}

.footer-nav-list li {
	margin: 0;
}

.footer-link {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 400;
	font-size: 15px;
	transition: var(--transition);
	position: relative;
	display: inline-block;
	padding-left: 0;
}

.footer-link::before {
	content: '→';
	position: absolute;
	left: -20px;
	opacity: 0;
	transition: var(--transition);
	color: var(--primary);
	font-weight: 600;
}

.footer-link:hover {
	color: var(--white);
	padding-left: 20px;
	transform: translateX(4px);
}

.footer-link:hover::before {
	opacity: 1;
	left: 0;
}

.footer-warning {
	margin-top: 24px;
	padding: 16px;
	background: rgba(255, 107, 53, 0.1);
	border-left: 3px solid var(--primary);
	border-radius: 8px;
}

.footer-warning p {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	font-weight: 500;
}

.footer-bottom {
	padding: 32px 0;
}

.footer-bottom-content {
		text-align: center;
}

.footer-copyright {
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	line-height: 1.6;
}

.warning {
	opacity: 0.8;
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Contact Form Styles */
.contact-form-wrapper {
	margin: 32px 0;
	padding: 32px;
	background: var(--bg);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-sm);
}

.contact-form {
	display: flex;
		flex-direction: column;
	gap: 24px;
	}

.form-group {
	display: flex;
		flex-direction: column;
	gap: 8px;
}

.form-group label {
	font-weight: 600;
	color: var(--text);
	font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 14px 18px;
	border: 2px solid #e9ecef;
	border-radius: var(--border-radius);
	font-size: 15px;
	font-family: 'Inter', sans-serif;
	transition: var(--transition);
	background: var(--white);
	color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-submit {
	padding: 16px 32px;
	background: var(--gradient-primary);
	border: none;
	border-radius: var(--border-radius);
	color: var(--white);
	font-size: 17px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
	transition: var(--transition);
	box-shadow: var(--shadow-md);
	align-self: flex-start;
}

.contact-submit:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}

.contact-submit:active {
	transform: translateY(-1px);
}

/* Demo Block Styles */
.demo {
	margin: 40px 0;
	padding: 32px;
	background: var(--white);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-md);
}

.demo__ins {
	position: relative;
}

.demo__preview {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: var(--border-radius);
	background-image: url('/images/chick-road-casino1.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: var(--shadow-lg);
}

.demo__preview-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
	z-index: 1;
	border-radius: var(--border-radius);
}

.demo__button-list {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 16px;
	z-index: 2;
	width: 100%;
	max-width: 600px;
	padding: 0 24px;
}

.demo__preview.hidden {
	display: none;
}

.demo__button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 56px;
	padding: 16px 32px;
	border-radius: var(--border-radius);
	background: var(--gradient-primary);
	border: none;
	outline: none;
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	line-height: 1.3;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	user-select: none;
	box-shadow: var(--shadow-lg);
}

.demo__button:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: var(--shadow-xl);
}

.demo__button:active {
	transform: translateY(-2px) scale(1.02);
}

.demo__iframe-container {
	display: none;
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: var(--border-radius);
	background: var(--dark);
	box-shadow: var(--shadow-xl);
}

.demo__iframe-container.active {
	display: block;
	animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.demo__iframe-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: var(--border-radius);
}

.demo__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.95);
	border: none;
	border-radius: 50%;
	color: var(--text);
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: var(--transition);
	box-shadow: var(--shadow-md);
}

.demo__close:hover {
	background: var(--white);
	transform: scale(1.1) rotate(90deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
	main {
		max-width: 100%;
		padding: 0 20px;
	}
	
	.header-container {
		padding: 18px 24px;
	}
	
	.footer-main {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.footer-section--brand {
		grid-column: 1 / -1;
		max-width: 100%;
	}
	
	.hero h1 {
		font-size: 32px;
	}
	
	.content h1 {
		font-size: 36px;
	}
	
	.content h2 {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.header-container {
		padding: 12px 16px;
	}

	.hero {
		padding: 24px;
		flex-direction: column;
	}

	.hero__info {
		width: 100%;
		margin-bottom: 24px;
	}
	
	.hero h1 {
		font-size: 28px;
		text-align: center;
	}
	
	.hero__info table {
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
	}
	
	.hero__info table tbody,
	.hero__info table tr {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		gap: 12px;
	}
	
	.hero__info table td {
		flex: 1;
		min-width: calc(50% - 6px);
		border-top: 2px solid var(--bg);
		margin-right: 0;
	}

	.hero__box {
		width: 100%;
		margin: 0 auto;
	}

	.hero__thumb {
		width: 160px;
		height: 160px;
	}

	.header-container {
		padding: 16px 20px;
		gap: 16px;
	}
	
	.header-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		width: 100%;
		background: var(--white);
		box-shadow: var(--shadow-xl);
		padding: 20px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		transform: translateY(-10px);
		border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
		border-top: 1px solid rgba(255, 107, 53, 0.1);
		max-height: calc(100vh - 80px);
		overflow-y: auto;
		z-index: 999;
	}
	
	.header-nav[aria-expanded="true"] {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}
	
	.header-nav[aria-expanded="false"] {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-10px);
	}
	
	.nav-list {
		display: flex;
		flex-direction: column;
		gap: 4px;
		align-items: stretch;
		width: 100%;
	}

	.nav-item {
		width: 100%;
	}

	.nav-link {
		display: block;
		width: 100%;
		padding: 14px 18px;
		text-align: left;
		border-bottom: 1px solid #e9ecef;
		border-radius: 8px;
		margin-bottom: 4px;
	}

	.nav-link:hover {
		background: var(--bg);
		transform: translateX(4px);
	}
	
	.nav-link--highlight {
		background: var(--gradient-primary);
		color: var(--white);
	}

	.mobile-menu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.content {
		padding: 24px;
	}
	
	.content h1 {
		font-size: 28px;
		line-height: 1.3;
	}
	
	.content h2 {
		font-size: 24px;
	}
	
	.content h3 {
		font-size: 20px;
	}

	.alighnright {
		float: none;
		margin: 0 auto 24px;
		width: 100%;
	}

	.casino-item {
		flex-direction: column;
		text-align: center;
		gap: 20px;
		padding: 20px;
	}

	.casino-logo {
		width: 100%;
		max-width: 150px;
	}

	.play-btn {
		margin-left: 0;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 48px 0 32px;
	}
	
	.footer-section--brand {
		max-width: 100%;
		text-align: center;
	}
	
	.footer-logo {
		justify-content: center;
	}
	
	.footer-title {
		text-align: center;
	}
	
	.footer-title::after {
		left: 50%;
		transform: translateX(-50%);
	}
	
	.footer-nav-list {
		align-items: center;
	}
	
	.footer-link {
		text-align: center;
	}
	
	.footer-wrapper {
		padding: 0 20px;
	}
	
	.footer-main {
		padding: 40px 0 28px;
	}
	
	.footer-bottom {
		padding: 24px 0;
	}

	.content table {
		display: block;
		overflow-x: auto;
		font-size: 14px;
	}
	
	.content th,
	.content td {
		padding: 12px 8px;
	}
	
	.demo {
		padding: 20px;
	}
	
	.demo__button-list {
		flex-direction: column;
		gap: 12px;
		padding: 0 16px;
	}
	
	.demo__button {
		width: 100%;
		font-size: 16px;
		min-height: 48px;
		padding: 12px 24px;
	}
	
	.demo__iframe-container {
		padding-bottom: 75%;
	}
	
	.faq h2 {
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	main {
		margin: 16px auto;
		padding: 0 16px;
	}
	
	.hero {
		padding: 20px;
		margin-bottom: 24px;
	}
	
	.hero h1 {
		font-size: 24px;
	}
	
	.content {
		padding: 20px;
	}
	
	.content h1 {
		font-size: 24px;
	}
	
	.content h2 {
		font-size: 22px;
	}
	
	.hero__thumb {
		width: 140px;
		height: 140px;
	}
	
	.hero__button,
	.play__button,
	.casino-button {
		font-size: 16px;
		padding: 12px 20px;
		min-height: 48px;
	}
}

/* Smooth Scroll */
html {
	scroll-behavior: smooth;
}

/* Selection */
::selection {
	background: var(--primary);
	color: var(--white);
}

::-moz-selection {
	background: var(--primary);
	color: var(--white);
}

/* Focus Styles */
a:focus,
button:focus {
	outline: 3px solid var(--primary);
	outline-offset: 2px;
}

/* Loading Animation */
@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

.loading {
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Reviews Section */
.reviews-section {
	padding: 100px 24px;
	background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #f0f2f5 100%);
	margin-top: 80px;
	position: relative;
	overflow: hidden;
}

.reviews-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

.reviews-section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.reviews-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.reviews-title {
	font-family: 'Poppins', sans-serif;
	font-size: 48px;
	font-weight: 800;
	text-align: center;
	margin-bottom: 64px;
	color: var(--dark);
	position: relative;
	padding-bottom: 32px;
	background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 0.8s ease-out;
}

.reviews-title::before {
	content: '★★★★★';
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 24px;
	color: rgba(255, 107, 53, 0.2);
	letter-spacing: 8px;
}

.reviews-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 5px;
	background: var(--gradient-primary);
	border-radius: 3px;
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: 28px;
}

.review-card {
	background: var(--white);
	border-radius: var(--border-radius-lg);
	padding: 32px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.6s ease-out backwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
.review-card:nth-child(5) { animation-delay: 0.5s; }
.review-card:nth-child(6) { animation-delay: 0.6s; }

.review-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
	transition: left 0.6s ease;
	z-index: 0;
}

.review-card:hover::before {
	left: 100%;
}

.review-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
	border-color: var(--primary);
}

.review-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 24px;
	gap: 16px;
	position: relative;
	z-index: 1;
}

.review-author-info {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
}

.review-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 26px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	flex-shrink: 0;
	box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
	position: relative;
	transition: var(--transition);
	border: 3px solid rgba(255, 255, 255, 0.3);
}

.review-avatar::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	padding: 3px;
	background: var(--gradient-primary);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	opacity: 0;
	transition: var(--transition);
}

.review-card:hover .review-avatar {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

.review-card:hover .review-avatar::after {
	opacity: 1;
}

.review-author-details {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.review-author-name {
	font-family: 'Poppins', sans-serif;
	font-size: 19px;
	font-weight: 700;
	color: var(--dark);
	margin: 0;
	transition: var(--transition);
}

.review-card:hover .review-author-name {
	color: var(--primary);
}

.review-date {
	font-size: 14px;
	color: var(--text-light);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
}

.review-date::before {
	content: '📅';
	font-size: 12px;
}

.review-rating {
	display: flex;
	gap: 6px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.star {
	font-size: 22px;
	color: #e0e0e0;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.star-filled {
	color: #FFD700;
	text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
	filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.4));
	animation: starPulse 2s ease-in-out infinite;
}

.star-filled:nth-child(1) { animation-delay: 0s; }
.star-filled:nth-child(2) { animation-delay: 0.2s; }
.star-filled:nth-child(3) { animation-delay: 0.4s; }
.star-filled:nth-child(4) { animation-delay: 0.6s; }
.star-filled:nth-child(5) { animation-delay: 0.8s; }

@keyframes starPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.15);
		opacity: 0.9;
	}
}

.review-text {
	color: var(--text);
	font-size: 15.5px;
	line-height: 1.8;
	margin: 0;
	position: relative;
	z-index: 1;
	transition: var(--transition);
}

.review-card:hover .review-text {
	color: var(--dark);
}

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

/* Author Section */
.author-section {
	padding: 100px 24px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	position: relative;
	overflow: hidden;
}

.author-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 20s ease-in-out infinite;
	pointer-events: none;
}

.author-section::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 25s ease-in-out infinite reverse;
	pointer-events: none;
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(30px, -30px) scale(1.1);
	}
}

.author-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.author-content {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 64px;
	align-items: flex-start;
	animation: fadeInUp 0.8s ease-out;
}

.author-image-wrapper {
	position: relative;
	animation: fadeInLeft 1s ease-out;
}

.author-image {
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
	border: 8px solid rgba(255, 255, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(20px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
	            0 0 0 1px rgba(255, 255, 255, 0.1) inset,
	            0 0 80px rgba(255, 107, 53, 0.2);
	position: relative;
	overflow: hidden;
	transition: var(--transition);
}

.author-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	position: relative;
	z-index: 2;
}

.author-image:hover {
	transform: scale(1.05);
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 
	            0 0 0 1px rgba(255, 255, 255, 0.2) inset,
	            0 0 100px rgba(255, 107, 53, 0.3);
}

.author-image::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
	animation: rotate 12s linear infinite;
}

.author-image::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: linear-gradient(45deg, #FF6B35, #4ECDC4, #667eea, #FF6B35);
	background-size: 300% 300%;
	z-index: -1;
	opacity: 0.3;
	animation: gradientRotate 8s ease infinite;
	filter: blur(8px);
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

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

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.author-initials {
	font-size: 80px;
	font-weight: 800;
	font-family: 'Poppins', sans-serif;
	color: var(--white);
	text-shadow: 0 6px 20px rgba(0, 0, 0, 0.4),
	             0 0 40px rgba(255, 255, 255, 0.3);
	position: relative;
	z-index: 1;
	background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.author-badge {
	position: absolute;
	bottom: 24px;
	right: 24px;
	background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
	padding: 10px 20px;
	border-radius: 25px;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4),
	            0 0 0 2px rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	animation: badgePulse 2s ease-in-out infinite;
	z-index: 10;
}

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

.badge-icon {
	color: var(--white);
	font-weight: 700;
	font-size: 16px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-text {
	color: var(--white);
	font-size: 13px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.author-info {
	color: var(--white);
	animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.author-name {
	font-family: 'Poppins', sans-serif;
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 12px;
	color: var(--white);
	text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
	             0 0 40px rgba(255, 255, 255, 0.1);
	background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.author-name::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 80px;
	height: 4px;
	background: var(--gradient-primary);
	border-radius: 2px;
	box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
}

.author-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.95);
	font-style: italic;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	position: relative;
	padding-left: 24px;
}

.author-title::before {
	content: '👨‍💼';
	position: absolute;
	left: 0;
	font-style: normal;
}

.author-bio {
	margin-bottom: 40px;
}

.author-bio p {
	color: rgba(255, 255, 255, 0.98);
	font-size: 17px;
	line-height: 1.9;
	margin-bottom: 20px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: relative;
	padding-left: 24px;
}

.author-bio p::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
}

.author-bio p:last-child {
	margin-bottom: 0;
}

.author-stats {
	display: flex;
	gap: 48px;
	flex-wrap: wrap;
	padding-top: 40px;
	border-top: 2px solid rgba(255, 255, 255, 0.25);
	position: relative;
}

.author-stats::before {
	content: '';
	position: absolute;
	top: -2px;
	left: 0;
	width: 100px;
	height: 2px;
	background: var(--gradient-primary);
	border-radius: 2px;
	box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.stat-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
	padding: 16px 24px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: var(--transition);
}

.stat-item:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-number {
	font-family: 'Poppins', sans-serif;
	font-size: 38px;
	font-weight: 800;
	color: var(--white);
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3),
	             0 0 20px rgba(255, 255, 255, 0.2);
	background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.stat-number::after {
	content: '+';
	font-size: 24px;
	position: absolute;
	right: -16px;
	color: rgba(255, 255, 255, 0.8);
}

.stat-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Reviews and Author */
@media (max-width: 1024px) {
	.author-content {
		grid-template-columns: 220px 1fr;
		gap: 32px;
	}
	
	.author-image {
		width: 200px;
		height: 200px;
	}
	
	.author-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.author-initials {
		font-size: 60px;
	}
	
	.reviews-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
}

@media (max-width: 768px) {
	.reviews-section {
		padding: 48px 20px;
		margin-top: 48px;
	}
	
	.reviews-title {
		font-size: 32px;
		margin-bottom: 32px;
	}
	
	.reviews-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.review-card {
		padding: 20px;
	}
	
	.review-header {
		flex-direction: column;
		gap: 12px;
	}
	
	.author-section {
		padding: 48px 20px;
	}
	
	.author-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 32px;
	}
	
	.author-image-wrapper {
		display: flex;
		justify-content: center;
	}
	
	.author-image {
		width: 180px;
		height: 180px;
	}
	
	.author-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.author-initials {
		font-size: 54px;
	}
	
	.author-name {
		font-size: 28px;
	}
	
	.author-stats {
		justify-content: center;
		gap: 24px;
	}
}

@media (max-width: 480px) {
	.reviews-title {
		font-size: 28px;
	}
	
	.review-card {
		padding: 16px;
	}
	
	.author-image {
		width: 150px;
		height: 150px;
	}
	
	.author-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.author-initials {
		font-size: 48px;
	}
	
	.author-name {
		font-size: 24px;
	}
	
	.author-bio p {
		font-size: 15px;
	}
	
	.stat-number {
		font-size: 28px;
	}
}

/* Internal Page Navigation - Dropdown Menu */
.internal-navigation {
	margin: 25px 0;
	position: relative;
	width: 100%;
	max-width: 400px;
	z-index: 10;
}

.internal-nav-toggle {
	width: 100%;
	padding: 12px 20px;
	background: #007bff;
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.internal-nav-toggle:hover {
	background: #0056b3;
	box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.internal-nav-toggle[aria-expanded="true"] {
	background: #0056b3;
	border-radius: 8px 8px 0 0;
}

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

.nav-toggle-text {
	flex: 1;
	text-align: left;
}

.nav-toggle-icon {
	transition: transform 0.3s ease;
	font-size: 12px;
	margin-left: 10px;
}

.internal-nav-content {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #dee2e6;
	border-top: none;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	max-height: 400px;
	overflow-y: auto;
	z-index: 1000;
}

.internal-nav-content.active {
	display: block;
}

.internal-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.internal-nav-item {
	border-bottom: 1px solid #f0f0f0;
}

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

.internal-nav-link {
	display: block;
	padding: 12px 20px;
	color: #495057;
	text-decoration: none;
	transition: all 0.2s ease;
	font-size: 14px;
	line-height: 1.5;
}

.internal-nav-link:hover {
	background: #f8f9fa;
	color: #007bff;
	padding-left: 25px;
}

.internal-nav-link:active {
	background: #e9ecef;
}

/* Smooth scroll */
html {
	scroll-behavior: smooth;
}

/* Add offset for fixed header */
h2[id] {
	scroll-margin-top: 100px;
}

@media (max-width: 768px) {
	.internal-navigation {
		margin: 20px 0;
		max-width: 100%;
	}
	
	.internal-nav-toggle {
		padding: 10px 15px;
		font-size: 14px;
	}
	
	.internal-nav-link {
		padding: 10px 15px;
		font-size: 13px;
	}
	
	h2[id] {
		scroll-margin-top: 80px;
	}
}
