* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-dark: #0a0e27;
	--primary-purple: #1a1b3d;
	--accent-cyan: #00d9ff;
	--accent-purple: #6b4ce6;
	--accent-gold: #ffd700;
	--text-primary: #ffffff;
	--text-secondary: #b8b9d4;
	--gradient-primary: linear-gradient(135deg, #6b4ce6 0%, #00d9ff 100%);
	--gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, sans-serif;
	background: var(--primary-dark);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	/* Added width constraint to prevent horizontal overflow */
	width: 100%;
	max-width: 100vw;
}
a {
text-decoration: none;
}

/* Header */
.header {
	background: rgba(26, 27, 61, 0.95);
	backdrop-filter: blur(10px);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(107, 76, 230, 0.3);
	/* Added width constraint to prevent overflow */
	width: 100%;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	/* Added width constraint to prevent overflow */
	width: 100%;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	/* Added flex-wrap and width constraint */
	flex-wrap: wrap;
	width: 100%;
	position: relative;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: var(--text-primary);
	font-size: 1.5rem;
	font-weight: bold;
}
.logo img {
	height: 35px;
	object-fit: contain;
}

.logo-icon {
	width: 40px;
	height: 40px;
	background: var(--gradient-primary);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s;
	font-size: 0.95rem;
	/* Added white-space to prevent text wrapping */
	white-space: nowrap;
}

.nav a:hover {
	color: var(--accent-cyan);
}

.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	text-align: center;
	border: none;
	cursor: pointer;
	font-size: 0.95rem;
}

.btn-primary {
	background: var(--gradient-primary);
	color: var(--text-primary);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(107, 76, 230, 0.4);
}

.btn-gold {
	background: var(--gradient-gold);
	color: var(--primary-dark);
}

.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 1.5rem;
	cursor: pointer;
	/* Added padding for better touch target */
	padding: 0.5rem;
}

/* Hero Section */
.hero {
	padding: 4rem 0;
	background: linear-gradient(
		180deg,
		var(--primary-purple) 0%,
		var(--primary-dark) 100%
	);
	position: relative;
	overflow: hidden;
	/* Added width constraint */
	width: 100%;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(107, 76, 230, 0.2) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-text h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-text p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

.bonus-card {
	background: rgba(107, 76, 230, 0.1);
	border: 2px solid var(--accent-purple);
	border-radius: 16px;
	padding: 2rem;
	margin-bottom: 2rem;
}

.bonus-amount {
	font-size: 3rem;
	font-weight: bold;
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.bonus-text {
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

.hero-image {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-image img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(107, 76, 230, 0.3);
}

/* Carousel */
.carousel-section {
	padding: 4rem 0;
	background: var(--primary-dark);
	overflow: hidden;
	width: 100%;
	/* Added position relative to anchor carousel controls properly */
	position: relative;
}

.carousel {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	max-width: 100%;
	height: 400px;
	/* Added width constraint */
	width: 100%;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease;
	height: 100%;
}

.carousel-slide {
	min-width: 100%;
	flex-shrink: 0;
	position: relative;
	height: 100%;
}

.carousel-slide img {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	object-fit: contain;
	opacity: 0.7;
	border-radius: 16px;
}

.carousel-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 3rem;
	background: linear-gradient(to top, rgba(10, 14, 39, 0.95), transparent);
}

.carousel-content h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.carousel-content p {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.carousel-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 2rem;
	pointer-events: none;
	z-index: 10;
}

.carousel-btn {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: linear-gradient(
		135deg,
		rgba(107, 76, 230, 0.9) 0%,
		rgba(26, 27, 61, 0.95) 100%
	);
	backdrop-filter: blur(20px);
	border: 2px solid rgba(0, 217, 255, 0.4);
	color: var(--text-primary);
	font-size: 1.8rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}
@media (max-width: 991px) {
	.carousel-btn {
		display: none;
	}
}

.carousel-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 217, 255, 0.3),
		transparent
	);
	transition: left 0.6s;
}

.carousel-btn:hover::before {
	left: 100%;
}

.carousel-btn:hover {
	background: linear-gradient(
		135deg,
		rgba(0, 217, 255, 0.9) 0%,
		rgba(107, 76, 230, 0.95) 100%
	);
	transform: scale(1.1);
	box-shadow: 0 12px 40px rgba(0, 217, 255, 0.5),
		0 0 30px rgba(0, 217, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	border-color: var(--accent-cyan);
}

.carousel-btn:active {
	transform: scale(0.98);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1rem;
}

.carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(107, 76, 230, 0.3);
	cursor: pointer;
	transition: all 0.3s;
}

.carousel-dot.active {
	background: var(--accent-cyan);
	width: 30px;
	border-radius: 6px;
}

/* Slots Section */
.slots-section {
	padding: 4rem 0;
	background: var(--primary-purple);
	/* Added overflow hidden */
	overflow: hidden;
	width: 100%;
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
}

.slots-grid a {
color: var(--text-primary);
}

.slot-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: rgba(10, 14, 39, 0.5);
	border: 1px solid rgba(107, 76, 230, 0.3);
	transition: all 0.3s;
	cursor: pointer;
}

.slot-card:hover {
	transform: translateY(-5px);
	border-color: var(--accent-cyan);
	box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.slot-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.slot-info {
	padding: 1rem;
}

.slot-name {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.slot-provider {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.slot-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(107, 76, 230, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.slot-card:hover .slot-overlay {
	opacity: 1;
}

/* Providers Section */
.providers-section {
	padding: 4rem 0;
	background: var(--primary-dark);
	/* Added overflow hidden */
	overflow: hidden;
	width: 100%;
}

.providers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 2rem;
}

.provider-card {
	background: rgba(107, 76, 230, 0.1);
	border: 1px solid rgba(107, 76, 230, 0.3);
	border-radius: 12px;
	padding: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	cursor: pointer;
	min-height: 100px;
}

.provider-card:hover {
	background: rgba(107, 76, 230, 0.2);
	border-color: var(--accent-cyan);
	transform: translateY(-5px);
}
.provider-card img {
	width: 100%;
	object-fit: contain;
}
.provider-name {
	font-size: 1.1rem;
	font-weight: 600;
	text-align: center;
}

/* Footer */
.footer {
	background: var(--primary-purple);
	padding: 3rem 0 1rem;
	border-top: 1px solid rgba(107, 76, 230, 0.3);
	/* Added overflow hidden */
	overflow: hidden;
	width: 100%;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-section h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--accent-cyan);
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.75rem;
}

.footer-section a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-section a:hover {
	color: var(--accent-cyan);
}

.footer-section p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.8;
}

.disclaimer {
	background: rgba(10, 14, 39, 0.5);
	border: 1px solid rgba(255, 215, 0, 0.3);
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 2rem;
}

.disclaimer p {
	color: var(--accent-gold);
	font-size: 0.9rem;
	line-height: 1.6;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(107, 76, 230, 0.3);
	color: var(--text-secondary);
	font-size: 0.9rem;
}
.section-title {
	margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
	.container {
		padding: 0 1rem;
	}

	.header-content {
		gap: 1rem;
	}

	.nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		width: 100%;
		background: var(--primary-purple);
		flex-direction: column;
		padding: 1rem;
		border-top: 1px solid rgba(107, 76, 230, 0.3);
		gap: 0.5rem;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
		z-index: 999;
	}

	.nav.active {
		display: flex;
	}

	.nav a {
		padding: 0.75rem 1rem;
		width: 100%;
		text-align: center;
		border-radius: 8px;
		transition: background 0.3s;
	}

	.nav a:hover {
		background: rgba(107, 76, 230, 0.2);
	}

	.mobile-menu-btn {
		display: block;
	}

	/* Hide registration button on mobile to prevent overflow */
	.header-content > .btn-primary {
		display: none;
	}

	.hero {
		padding: 2rem 0;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.hero-text h1 {
		font-size: 2rem;
	}

	.hero-text p {
		font-size: 1rem;
	}

	.bonus-card {
		padding: 1.5rem;
	}

	.bonus-amount {
		font-size: 2rem;
	}

	.section-title {
		font-size: 1.75rem;
		padding: 0 1rem;
	}

	.slots-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 1rem;
	}

	.providers-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
		gap: 1rem;
	}

	.carousel {
		height: 300px;
		border-radius: 12px;
	}

	.carousel-content {
		padding: 1.5rem;
	}

	.carousel-content h3 {
		font-size: 1.5rem;
	}

	.carousel-content p {
		font-size: 0.9rem;
	}

	.carousel-btn {
		/* Adjusted mobile button size */
		width: 50px;
		height: 50px;
		font-size: 1.5rem;
		border-radius: 10px;
	}

	.carousel-controls {
		padding: 0 1rem;
	}
}

/* Added extra small screen breakpoint for better mobile support */
@media (max-width: 480px) {
	.container {
		padding: 0 0.75rem;
	}

	.logo {
		font-size: 1.25rem;
	}

	.logo-icon {
		width: 35px;
		height: 35px;
		font-size: 1.25rem;
	}

	.hero-text h1 {
		font-size: 1.5rem;
	}

	.hero-text p {
		font-size: 0.9rem;
	}

	.bonus-card {
		padding: 1rem;
	}

	.bonus-amount {
		font-size: 1.75rem;
	}

	.btn {
		padding: 0.6rem 1.2rem;
		font-size: 0.9rem;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.carousel {
		height: 250px;
	}

	.carousel-content {
		padding: 1rem;
	}

	.carousel-content h3 {
		font-size: 1.25rem;
	}

	.carousel-content p {
		font-size: 0.9rem;
	}

	.carousel-btn {
		/* Further reduced for small screens */
		width: 44px;
		height: 44px;
		font-size: 1.3rem;
		border-radius: 8px;
	}

	.carousel-controls {
		padding: 0 0.5rem;
	}

	.slots-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}

	.slot-card img {
		height: 150px;
	}

	.providers-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}

	.provider-card {
		padding: 1.5rem 1rem;
		min-height: 80px;
	}

	.provider-name {
		font-size: 0.95rem;
	}

	.age-badge {
		width: 50px;
		height: 50px;
		font-size: 1rem;
		bottom: 20px;
		right: 20px;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

/* 18+ Badge */
.age-badge {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background: var(--gradient-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.25rem;
	color: var(--primary-dark);
	box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
	z-index: 999;
}
.text-wrapper {
    margin: 80px 0;
    padding: 0;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.text-wrapper p {
    margin: 0 0 1.2em;
    line-height: 1.6;
}

.text-wrapper strong,
.text-wrapper b { font-weight: 600; }
.text-wrapper em,
.text-wrapper i { font-style: italic; }
.text-wrapper mark { background: #fffb91; padding: 0 2px; }
.text-wrapper del { text-decoration: line-through; }
.text-wrapper sup { font-size: 0.8em; vertical-align: super; }
.text-wrapper sub { font-size: 0.8em; vertical-align: sub; }

.text-wrapper h2,
.text-wrapper h3,
.text-wrapper h4,
.text-wrapper h5,
.text-wrapper h6 {
    margin: 2em 0 1em;
    line-height: 1.3;
}

.text-wrapper ul,
.text-wrapper ol {
    margin: 0 0 1.2em;
    padding-left: 1.5em;
}

.text-wrapper li { 
    margin-bottom: 0.4em; 
    list-style-position: outside; 
}

.text-wrapper dl { margin: 1.5em 0; }
.text-wrapper dt { font-weight: 600; }
.text-wrapper dd { margin: 0 0 1em 1.5em; }

.text-wrapper a {
    text-decoration: underline;
    transition: all 0.2s;
}
.text-wrapper a:hover { font-weight: 600; }

.text-wrapper code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: Consolas, Monaco, monospace;
    font-size: 0.9em;
}
.text-wrapper pre {
    background: #272822;
    color: #f8f8f2;
    padding: 1em;
    overflow-x: auto;
    border-radius: 6px;
    margin: 1.5em 0;
}
.text-wrapper pre code { background: none; padding: 0; color: inherit; }

.text-wrapper hr {
    margin: 2em 0;
    border: none;
    border-top: 1px solid #ddd;
}

.text-wrapper img,
.text-wrapper video,
.text-wrapper iframe {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 1.5em 0;
    display: block;
    border-radius: 6px;
}

.text-wrapper figure {
    margin: 2em 0;
    text-align: center;
}
.text-wrapper figcaption {
    margin-top: 0.5em;
    font-style: italic;
    opacity: 0.8;
}

.text-wrapper blockquote {
    margin: 2em 0;
    padding: 1em 1.5em;
    border-left: 4px solid #ccc;
    background: #f9f9f9;
    border-radius: 4px;
}
.text-wrapper blockquote p:last-child { margin-bottom: 0; }

.text-wrapper > *:last-child { margin-bottom: 0; }

.text-wrapper table {
    width: 100%;
    margin: 2em 0;
    border-collapse: collapse;
    font-size: 0.95em;
}

.text-wrapper th,
.text-wrapper td {
    padding: 0.75em 1em;
    border: 1px solid var(--accent-purple);
    text-align: left;
    vertical-align: top;
    word-break: break-word;
}

.text-wrapper th { background: rgba(26, 27, 61, 0.95); font-weight: 600; }
.text-wrapper tr:nth-child(even) td { background: rgba(26, 27, 61, 0.75); }

@media (max-width: 767px) {
    .text-wrapper table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        border-radius: 6px;
    }

    .text-wrapper th,
    .text-wrapper td {
        white-space: normal;
        word-break: break-word;
    }

    .text-wrapper li { list-style-position: inside; }


.text-wrapper table.scrollable {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-radius: 6px;
}

.text-wrapper table.scrollable th,
.text-wrapper table.scrollable td {
    white-space: nowrap;
    word-break: normal;
}

.text-wrapper table.scrollable::-webkit-scrollbar {
    height: 6px;
}
.text-wrapper table.scrollable::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 3px;
}
.text-wrapper table.scrollable::-webkit-scrollbar-track {
    background: transparent;
}
}
@media (max-width: 480px) {
    .text-wrapper { margin: 60px 0; }
    .text-wrapper blockquote { border-left-width: 3px; padding: 0.7em 1em; }
}