* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #f5f5f5;
	background-color: #0f0f0f;
	overflow-x: hidden;
}

/* Typography */
.nc-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.nc-subtitle {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 2rem;
	color: #cccccc;
}

.nc-heading-1 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #f5f5f5;
	text-align: center;
}

.nc-heading-2 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #f5f5f5;
}

.nc-heading-3 {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.75rem;
	color: #f5f5f5;
}

.nc-text {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1rem;
	color: #cccccc;
}

.nc-text-large {
	font-size: 1.25rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	color: #cccccc;
}

/* Layout Components */
.nc-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.nc-container-full {
	width: 100%;
	padding: 0 2rem;
}

.nc-section {
	padding: 5rem 0;
	position: relative;
}

.nc-section-alt {
	background: linear-gradient(135deg, #8a2be2 0%, #32cd32 100%);
	background-size: 200% 200%;
	animation: nc-gradient-shift 8s ease-in-out infinite;
}

.nc-row {
	display: flex;
	flex-wrap: wrap;
	height: 100%;
}

.nc-col {
	flex: 1;
	padding: 1rem;
	min-width: 300px;
}

.nc-col-2 {
	flex: 0 0 50%;
	padding: 1rem;
}

.nc-col-3 {
	flex: 0 0 33.333%;
	padding: 1rem;
	height: 100%;
}

.nc-col-4 {
	flex: 0 0 25%;
	padding: 1rem;
}

/* Header Styles */
.nc-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(15, 15, 15, 0.95);
	backdrop-filter: blur(10px);
	padding: 1rem 0;
	box-shadow: 0 2px 20px rgba(138, 43, 226, 0.3);
	transition: all 0.3s ease;
}

.nc-header.nc-scrolled {
	background: rgba(15, 15, 15, 0.98);
	box-shadow: 0 4px 30px rgba(138, 43, 226, 0.5);
}

.nc-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.nc-logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: #8a2be2;
	text-decoration: none;
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.nc-logo:hover {
	transform: scale(1.05);
	color: #32cd32;
}

.nc-logo i {
	font-size: 2rem;
	color: #32cd32;
}

.nc-nav {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nc-nav-link {
	color: #f5f5f5;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	transition: color 0.3s ease;
	padding: 0.5rem 1rem;
	border-radius: 25px;
}

.nc-nav-link:hover {
	color: #8a2be2;
	background: rgba(138, 43, 226, 0.1);
}

.nc-nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 0;
	height: 2px;
	background: #8a2be2;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nc-nav-link:hover::after {
	width: 80%;
}

/* Mobile Navigation */
.nc-mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #f5f5f5;
	cursor: pointer;
}

.nc-mobile-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(15, 15, 15, 0.98);
	backdrop-filter: blur(10px);
	border-radius: 0 0 20px 20px;

	padding: 1rem;
	box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3);
}

.nc-mobile-nav.nc-active {
	display: block;
	animation: nc-fade-in 0.3s ease;
}

.nc-mobile-nav.nc-active .nc-nav {
	display: flex;
}

.nc-mobile-nav .nc-nav {
	flex-direction: column;
	gap: 1rem;
}

/* Button Styles */
.nc-btn {
	display: inline-block;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.nc-btn::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 ease;
}

.nc-btn:hover::before {
	left: 100%;
}

.nc-btn-primary {
	background: linear-gradient(135deg, #8a2be2, #9932cc);
	color: #f5f5f5;
	box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.nc-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
}

.nc-btn-secondary {
	background: linear-gradient(135deg, #32cd32, #228b22);
	color: #f5f5f5;
	box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
}

.nc-btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(50, 205, 50, 0.6);
}

.nc-btn-outline {
	background: transparent;
	color: #f5f5f5;
	border: 2px solid #8a2be2;
}

.nc-btn-outline:hover {
	background: #8a2be2;
	transform: translateY(-2px);
}

.nc-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none !important;
}

/* Card Styles */
.nc-card {
	background: rgba(36, 36, 36, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(138, 43, 226, 0.2);
	height: 100%;
}

.nc-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #8a2be2, #32cd32);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.nc-card:hover::before {
	transform: scaleX(1);
}

.nc-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(138, 43, 226, 0.3);
	border-color: rgba(138, 43, 226, 0.5);
}

.nc-card-header {
	margin-bottom: 1.5rem;
}

.nc-card-icon {
	font-size: 3rem;
	color: #8a2be2;
	margin-bottom: 1rem;
	display: block;
	animation: nc-float 3s ease-in-out infinite;
}

.nc-card-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #f5f5f5;
}

.nc-card-body {
	color: #cccccc;
	line-height: 1.6;
}

.nc-card-body img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

/* Casino Card Styles */
.nc-casino-card {
	background: rgba(36, 36, 36, 0.9);
	backdrop-filter: blur(15px);
	border-radius: 15px;
	padding: 1.5rem;
	transition: all 0.4s ease;
	border: 2px solid transparent;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 1rem;
}

.nc-casino-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
	border-color: #8a2be2;
}

.nc-casino-logo {
	width: 150px;
	height: 150px;

	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: #333;
	flex-shrink: 0;
}

.nc-casino-logo img {
	width: 100%;
	border-radius: 10px;
	height: 100%;
	object-fit: contain;
}

.nc-casino-info {
	flex: 1;
}

.nc-casino-name {
	font-size: 1.3rem;
	font-weight: 700;
	color: #f5f5f5;
	margin-bottom: 0.5rem;
}

.nc-casino-bonuses {
	list-style: none;
	margin-bottom: 1rem;
}

.nc-casino-bonuses li {
	color: #32cd32;
	margin-bottom: 0.25rem;
	position: relative;
	padding-left: 1.5rem;
}

.nc-casino-bonuses li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #8a2be2;
	font-weight: bold;
}

.nc-casino-payments {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.nc-payment-icon {
	font-size: 2rem;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;

	font-weight: bold;
}

.nc-payment-icon i {
	color: #8a2be2;
}

.nc-casino-rating {
	display: flex;
	gap: 0.2rem;
	margin-bottom: 1rem;
}

.nc-star {
	color: #32cd32;
	font-size: 1.2rem;
}

.nc-casino-actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: flex-end;
}

.nc-casino-btn {
	background: linear-gradient(135deg, #8a2be2, #9932cc);
	color: #f5f5f5;
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.nc-casino-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(138, 43, 226, 0.5);
}

/* Form Styles */
.nc-form {
	background: rgba(36, 36, 36, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(138, 43, 226, 0.2);
}

.nc-form-group {
	margin-bottom: 2rem;
}

.nc-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #f5f5f5;
}

.nc-form-input,
.nc-form-textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	border: 2px solid rgba(138, 43, 226, 0.3);
	border-radius: 50px;
	font-size: 1rem;
	background: rgba(36, 36, 36, 0.8);
	color: #f5f5f5;
	transition: all 0.3s ease;
	outline: none;
}

.nc-form-textarea {
	border-radius: 20px;
	resize: vertical;
	min-height: 120px;
}

.nc-form-input:focus,
.nc-form-textarea:focus {
	border-color: #8a2be2;
	box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
	transform: translateY(-2px);
}

.nc-form-error {
	color: #ff6b6b;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.nc-form-error.nc-show {
	display: block;
	animation: nc-fade-in 0.3s ease;
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}
.nc-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

/* Hero Section */
.nc-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.7)),
		url('../assets/nc-hero.webp') top/cover no-repeat;
}

.nc-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(
			circle at 20% 30%,
			rgba(138, 43, 226, 0.2) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 70%,
			rgba(50, 205, 50, 0.2) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 50% 50%,
			rgba(138, 43, 226, 0.1) 0%,
			transparent 70%
		);
	animation: nc-parallax 20s ease-in-out infinite;
}

.nc-hero-content {
	text-align: left;
	z-index: 2;
	position: relative;
	animation: nc-fade-up 1s ease-out;
	max-width: 600px;
}

.nc-hero-title {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #f5f5f5, #8a2be2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: nc-title-glow 3s ease-in-out infinite;
}

.nc-hero-subtitle {
	font-size: 1.5rem;
	color: #cccccc;
	margin-bottom: 3rem;
}

.nc-hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Advantages Section */
.nc-advantages {
	background: rgba(36, 36, 36, 0.3);
}

.nc-advantages-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 3rem;
}

.nc-advantage-item {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	background: rgba(36, 36, 36, 0.6);
	padding: 2rem;
	border-radius: 15px;
	transition: all 0.3s ease;
	border: 1px solid rgba(138, 43, 226, 0.2);
}

.nc-advantage-item:hover {
	transform: translateX(10px);
	border-color: rgba(138, 43, 226, 0.5);
	box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.nc-advantage-icon {
	font-size: 3rem;
	color: #8a2be2;
	flex-shrink: 0;
	animation: nc-pulse 2s ease-in-out infinite;
}

.nc-advantage-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #f5f5f5;
	margin-bottom: 0.5rem;
}

.nc-advantage-content p {
	color: #cccccc;
	line-height: 1.6;
}

/* How It Works Section */
.nc-how-it-works {
	background: rgba(15, 15, 15, 0.8);
}

.nc-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
	position: relative;
}

.nc-step {
	background: rgba(36, 36, 36, 0.8);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.nc-step:hover {
	transform: translateY(-10px);
	border-color: #8a2be2;
	box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
}

.nc-step-number {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #8a2be2, #9932cc);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #f5f5f5;
	font-size: 1.5rem;
}

.nc-step-icon {
	font-size: 2.5rem;
	color: #32cd32;
	margin: 1rem 0;
	animation: nc-bounce 2s ease-in-out infinite;
}

.nc-step-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #f5f5f5;
}

.nc-step-description {
	color: #cccccc;
	line-height: 1.6;
}

/* Casino List Section */
.nc-casino-list {
	background: linear-gradient(
		135deg,
		rgba(138, 43, 226, 0.05),
		rgba(50, 205, 50, 0.05)
	);
}

.nc-casino-table {
	margin-top: 3rem;
	background: rgba(36, 36, 36, 0.8);
	border-radius: 20px;
	padding: 2rem;
	overflow-x: auto;
}

/* Reviews Section */
.nc-reviews {
	background: rgba(36, 36, 36, 0.3);
}

.nc-reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.nc-review-card {
	background: rgba(36, 36, 36, 0.8);
	border-radius: 20px;
	padding: 2rem;
	transition: all 0.3s ease;
	border: 1px solid rgba(138, 43, 226, 0.2);
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.nc-review-card:hover {
	transform: translateY(-10px);
	border-color: rgba(138, 43, 226, 0.5);
	box-shadow: 0 20px 60px rgba(138, 43, 226, 0.2);
}

.nc-review-content {
	font-style: italic;
	margin-bottom: 1.5rem;
	color: #cccccc;
	position: relative;
	padding: 0 1rem;
}

.nc-review-content::before,
.nc-review-content::after {
	content: '"';
	font-size: 4rem;
	position: absolute;
	opacity: 0.3;
	line-height: 1;
	color: #8a2be2;
}

.nc-review-content::before {
	top: -20px;
	left: -10px;
}

.nc-review-content::after {
	bottom: -40px;
	right: -10px;
}

.nc-review-author {
	display: flex;
	align-items: center;
	flex-grow: 1;
}

.nc-review-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 1rem;
	border: 2px solid #32cd32;
}

.nc-review-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nc-review-info h4 {
	margin: 0 0 0.2rem;
	font-weight: 700;
	color: #f5f5f5;
}

.nc-review-location {
	opacity: 0.8;
	font-size: 0.9rem;
	color: #cccccc;
}

.nc-review-rating {
	color: #32cd32;
	font-size: 1.2rem;
	margin-left: auto;
}

/* Footer */
.nc-footer {
	background: linear-gradient(135deg, #242424, #1a1a1a);
	color: #f5f5f5;
	padding: 3rem 0 1rem;
	border-top: 1px solid rgba(138, 43, 226, 0.3);
}

.nc-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.nc-footer-section h4 {
	color: #8a2be2;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.nc-footer-links {
	list-style: none;
}

.nc-footer-links li {
	margin-bottom: 0.5rem;
}

.nc-footer-links a {
	color: #cccccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.nc-footer-links a:hover {
	color: #8a2be2;
}

.nc-footer-partners {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	flex-wrap: wrap;
}

.nc-partner-logo {
	background: rgba(245, 245, 245, 0.1);
	padding: 0.5rem 1rem;
	border-radius: 5px;
	color: #cccccc;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	width: 121px;
	height: 100px;
}

.nc-partner-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.nc-partner-logo:hover {
	background: rgba(138, 43, 226, 0.2);
	color: #8a2be2;
}

.nc-age-restriction {
	background: #32cd32;
	color: #0f0f0f;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-weight: bold;
	font-size: 1.2rem;
	display: inline-block;
	margin-top: 1rem;
}

.nc-footer-contact p a {
	text-decoration: none;
	color: #f5f5f5;
}

.nc-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(138, 43, 226, 0.3);
	color: #cccccc;
}

/* Cookie Banner */
.nc-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(36, 36, 36, 0.95);
	backdrop-filter: blur(10px);
	color: #f5f5f5;
	padding: 1.5rem;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	border-top: 2px solid #8a2be2;
}

.nc-cookie-banner.nc-show {
	transform: translateY(0);
}

.nc-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.nc-cookie-text {
	flex: 1;
}

.nc-cookie-text a {
	color: #8a2be2;
	text-decoration: underline;
}

.nc-cookie-actions {
	display: flex;
	gap: 1rem;
}

.nc-cookie-btn {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

.nc-cookie-accept {
	background: #8a2be2;
	color: #f5f5f5;
}

.nc-cookie-accept:hover {
	background: #9932cc;
}

.nc-cookie-decline {
	background: transparent;
	color: #f5f5f5;
	border: 1px solid #666;
}

.nc-cookie-decline:hover {
	background: #666;
}

/* Age Popup */
.nc-age-popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 15, 15, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10001;
	backdrop-filter: blur(10px);
}

.nc-age-popup-content {
	background: rgba(36, 36, 36, 0.95);
	padding: 3rem;
	border-radius: 20px;
	text-align: center;
	max-width: 500px;
	border: 2px solid #8a2be2;
	box-shadow: 0 20px 60px rgba(138, 43, 226, 0.3);
}

.nc-age-popup h2 {
	color: #f5f5f5;
	margin-bottom: 1rem;
	font-size: 2rem;
}

.nc-age-popup p {
	color: #cccccc;
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.nc-age-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.nc-age-btn {
	padding: 1rem 2rem;
	border: none;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.nc-age-yes {
	background: #32cd32;
	color: #0f0f0f;
}

.nc-age-yes:hover {
	background: #228b22;
}

.nc-age-no {
	background: #ff6b6b;
	color: #f5f5f5;
}

.nc-age-no:hover {
	background: #ff5252;
}

/* Table Styles */
.nc-table-wrapper {
	overflow-x: auto;
	margin-top: 2rem;
}

.nc-table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(36, 36, 36, 0.8);
	border-radius: 10px;
	overflow: hidden;
}

.nc-table th,
.nc-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}

.nc-table th {
	background: linear-gradient(135deg, #8a2be2, #9932cc);
	color: #f5f5f5;
	font-weight: 600;
}

.nc-table tr:hover {
	background: rgba(138, 43, 226, 0.1);
}

/* Animations */
@keyframes nc-fade-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes nc-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes nc-bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes nc-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

@keyframes nc-gradient-shift {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

@keyframes nc-parallax {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes nc-title-glow {
	0%,
	100% {
		text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
	}
	50% {
		text-shadow: 0 0 30px rgba(138, 43, 226, 0.8);
	}
}

@keyframes nc-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* Utility Classes */
.nc-text-center {
	text-align: center;
}

.nc-text-left {
	text-align: left;
}

.nc-text-right {
	text-align: right;
}

.nc-mb-0 {
	margin-bottom: 0;
}
.nc-mb-1 {
	margin-bottom: 0.5rem;
}
.nc-mb-2 {
	margin-bottom: 1rem;
}
.nc-mb-3 {
	margin-bottom: 1.5rem;
}
.nc-mb-4 {
	margin-bottom: 2rem;
}

.nc-mt-0 {
	margin-top: 0;
}
.nc-mt-1 {
	margin-top: 0.5rem;
}
.nc-mt-2 {
	margin-top: 1rem;
}
.nc-mt-3 {
	margin-top: 1.5rem;
}
.nc-mt-4 {
	margin-top: 2rem;
}

.nc-p-0 {
	padding: 0;
}
.nc-p-1 {
	padding: 0.5rem;
}
.nc-p-2 {
	padding: 1rem;
}
.nc-p-3 {
	padding: 1.5rem;
}
.nc-p-4 {
	padding: 2rem;
}

.nc-w-full {
	width: 100%;
}
.nc-h-full {
	height: 100%;
}

.nc-flex {
	display: flex;
}
.nc-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}
.nc-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nc-flex-column {
	flex-direction: column;
}

.nc-hidden {
	display: none;
}
.nc-visible {
	display: block;
}

.nc-relative {
	position: relative;
}
.nc-absolute {
	position: absolute;
}
.nc-fixed {
	position: fixed;
}

.nc-z-10 {
	z-index: 10;
}
.nc-z-20 {
	z-index: 20;
}
.nc-z-30 {
	z-index: 30;
}

/* Responsive Design */
@media (max-width: 992px) {
	.nc-nav {
		display: none;
	}

	.nc-mobile-toggle {
		display: block;
	}
}

@media (max-width: 768px) {
	.nc-header-content {
		padding: 0 1rem;
	}

	.nc-hero-title {
		font-size: 2.5rem;
		text-align: center;
	}

	.nc-casino-payments,
	.nc-casino-rating {
		justify-content: center;
	}

	.nc-footer-partners {
		justify-content: center;
	}

	.nc-casino-bonuses li {
		text-align: center;
		list-style-type: none;
		padding-left: 0;
	}

	.nc-casino-bonuses li::before {
		display: none;
	}

	.nc-hero-subtitle {
		text-align: center;
		font-size: 1.2rem;
	}

	.nc-title {
		font-size: 2.5rem;
	}

	.nc-heading-1 {
		font-size: 2rem;
	}

	.nc-container {
		padding: 0 1rem;
	}

	.nc-section {
		padding: 3rem 0;
	}

	.nc-col-2,
	.nc-col-3,
	.nc-col-4 {
		flex: 0 0 100%;
	}

	.nc-steps {
		grid-template-columns: 1fr;
	}

	.nc-steps::before {
		display: none;
	}

	.nc-casino-card {
		flex-direction: column;
		text-align: center;
	}

	.nc-casino-actions {
		align-items: center;
	}

	.nc-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.nc-cookie-actions {
		width: 100%;
		justify-content: center;
	}

	.nc-footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.nc-form {
		padding: 2rem 1.5rem;
	}

	.nc-card {
		padding: 1.5rem;
	}

	.nc-hero-buttons {
		justify-content: center;
	}

	.nc-age-buttons {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.nc-hero-title {
		font-size: 2rem;
	}

	.nc-reviews-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.nc-review-author {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		align-items: center;
	}

	.nc-review-rating {
		margin-left: 0;
	}

	.nc-review-avatar {
		margin-right: 0;
	}

	.nc-hero-subtitle {
		font-size: 1rem;
	}

	.nc-btn {
		padding: 0.875rem 1.5rem;
		font-size: 0.9rem;
	}

	.nc-section {
		padding: 2rem 0;
	}

	.nc-logo {
		font-size: 1.4rem;
	}

	.nc-casino-logo {
		width: 60px;
		height: 60px;
	}

	.nc-step-icon {
		font-size: 2rem;
	}

	.nc-card-icon {
		font-size: 2.5rem;
	}

	.nc-advantage-item {
		flex-direction: column;
		text-align: center;
	}
}

/* Print Styles */
@media print {
	.nc-header,
	.nc-footer,
	.nc-cookie-banner,
	.nc-age-popup {
		display: none;
	}

	.nc-section {
		padding: 1rem 0;
		page-break-inside: avoid;
	}

	.nc-card,
	.nc-casino-card,
	.nc-review-card {
		box-shadow: none;
		border: 1px solid #ccc;
		page-break-inside: avoid;
	}

	.nc-btn {
		border: 1px solid #333;
		background: none !important;
		color: #333 !important;
	}
}

/* Accessibility Improvements */
.nc-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.nc-focus-visible:focus {
	outline: 2px solid #8a2be2;
	outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
	.nc-btn-primary {
		background: #f5f5f5;
		color: #0f0f0f;
		border: 2px solid #0f0f0f;
	}

	.nc-btn-secondary {
		background: #0f0f0f;
		color: #f5f5f5;
		border: 2px solid #f5f5f5;
	}

	.nc-card,
	.nc-casino-card,
	.nc-review-card {
		border: 2px solid #f5f5f5;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Contact Page Styles */
.nc-page-header {
	background: linear-gradient(
		135deg,
		rgba(138, 43, 226, 0.1),
		rgba(50, 205, 50, 0.05)
	);
	padding: 8rem 0 4rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.nc-page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(
			circle at 20% 30%,
			rgba(138, 43, 226, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 70%,
			rgba(50, 205, 50, 0.1) 0%,
			transparent 50%
		);
	animation: nc-parallax 15s ease-in-out infinite;
}

.nc-page-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #f5f5f5, #8a2be2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	z-index: 2;
	animation: nc-title-glow 3s ease-in-out infinite;
}

.nc-page-subtitle {
	font-size: 1.25rem;
	color: #cccccc;
	max-width: 600px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.nc-contact-section {
	padding: 5rem 0;
	background: rgba(36, 36, 36, 0.3);
}

.nc-contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.nc-contact-form-wrapper {
	background: rgba(36, 36, 36, 0.8);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(138, 43, 226, 0.2);
	transition: all 0.3s ease;
}

.nc-contact-form-wrapper:hover {
	border-color: rgba(138, 43, 226, 0.4);
	box-shadow: 0 20px 60px rgba(138, 43, 226, 0.2);
}

.nc-contact-form-wrapper h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #f5f5f5;
	margin-bottom: 1rem;
	text-align: center;
}

.nc-contact-description {
	color: #cccccc;
	text-align: center;
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.nc-form-group {
	margin-bottom: 2rem;
	position: relative;
}

.nc-form-label {
	display: block;
	margin-bottom: 0.75rem;
	font-weight: 600;
	color: #f5f5f5;
	font-size: 0.95rem;
}

.nc-form-input,
.nc-form-textarea {
	width: 100%;
	padding: 1.25rem 1.5rem;
	border: 2px solid rgba(138, 43, 226, 0.3);
	border-radius: 10px;
	font-size: 1rem;
	background: rgba(15, 15, 15, 0.8);
	color: #f5f5f5;
	transition: all 0.3s ease;
	outline: none;
	font-family: Arial, sans-serif;
}

.nc-form-textarea {
	resize: vertical;
	min-height: 120px;
	line-height: 1.5;
}

.nc-form-input:focus,
.nc-form-textarea:focus {
	border-color: #8a2be2;
	box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
	transform: translateY(-2px);
	background: rgba(15, 15, 15, 0.9);
}

.nc-form-input::placeholder,
.nc-form-textarea::placeholder {
	color: #666;
}

.nc-form-input.nc-error,
.nc-form-textarea.nc-error {
	border-color: #ff6b6b;
	box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.nc-form-error {
	color: #ff6b6b;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
	animation: nc-fade-in 0.3s ease;
}

.nc-form-error.nc-show {
	display: block;
}

.nc-btn-submit {
	width: 100%;
	padding: 1.25rem;
	font-size: 1.1rem;
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.nc-btn-submit:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
}

.nc-btn-submit:disabled:hover {
	box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.nc-contact-info h3 {
	font-size: 2rem;
	font-weight: 700;
	color: #f5f5f5;
	margin-bottom: 1.5rem;
}

.nc-contact-intro {
	color: #cccccc;
	line-height: 1.6;
	margin-bottom: 3rem;
	font-size: 1.1rem;
}

.nc-contact-details {
	margin-bottom: 3rem;
}

.nc-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	padding: 1.5rem;
	background: rgba(36, 36, 36, 0.6);
	border-radius: 15px;
	transition: all 0.3s ease;
	border: 1px solid rgba(138, 43, 226, 0.1);
}

.nc-contact-item:hover {
	transform: translateX(5px);
	border-color: rgba(138, 43, 226, 0.3);
	box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
}

.nc-contact-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #8a2be2, #9932cc);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.nc-contact-icon i {
	font-size: 1.5rem;
	color: #f5f5f5;
}

.nc-contact-text h4 {
	font-size: 1.2rem;
	font-weight: 700;
	color: #f5f5f5;
	margin-bottom: 0.5rem;
}

.nc-contact-text p {
	color: #cccccc;
	line-height: 1.5;
	margin-bottom: 0.25rem;
}

.nc-contact-text a {
	color: #32cd32;
	text-decoration: none;
	transition: color 0.3s ease;
}

.nc-contact-text a:hover {
	color: #228b22;
	text-decoration: underline;
}

.nc-contact-text small {
	color: #999;
	font-size: 0.9rem;
}

.nc-contact-features {
	background: rgba(36, 36, 36, 0.6);
	padding: 2rem;
	border-radius: 15px;
	border: 1px solid rgba(138, 43, 226, 0.2);
}

.nc-contact-features h4 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #f5f5f5;
	margin-bottom: 1.5rem;
	text-align: center;
}

.nc-contact-features ul {
	list-style: none;
	padding: 0;
}

.nc-contact-features li {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	color: #cccccc;
	font-size: 1rem;
}

.nc-contact-features li i {
	color: #32cd32;
	font-size: 1.1rem;
	width: 20px;
	text-align: center;
}

.nc-contact-features li:last-child {
	margin-bottom: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
	.nc-page-title {
		font-size: 2.5rem;
	}

	.nc-page-subtitle {
		font-size: 1.1rem;
	}

	.nc-contact-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.nc-contact-form-wrapper {
		padding: 2rem;
	}

	.nc-contact-form-wrapper h2 {
		font-size: 1.75rem;
	}

	.nc-contact-item {
		flex-direction: column;
		text-align: center;
		padding: 1.25rem;
	}

	.nc-contact-icon {
		margin: 0 auto 1rem;
	}

	.nc-contact-features {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.nc-page-header {
		padding: 6rem 0 3rem;
	}

	.nc-page-title {
		font-size: 2rem;
	}

	.nc-page-subtitle {
		font-size: 1rem;
	}

	.nc-contact-section {
		padding: 3rem 0;
	}

	.nc-contact-form-wrapper {
		padding: 1.5rem;
	}

	.nc-form-input,
	.nc-form-textarea {
		padding: 1rem;
	}

	.nc-grid-team {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
	}

	.nc-contact-item {
		gap: 1rem;
	}

	.nc-contact-icon {
		width: 50px;
		height: 50px;
	}

	.nc-contact-icon i {
		font-size: 1.25rem;
	}
}

/* Legal Header */
.nc-legal-header {
	background: linear-gradient(135deg, #8a2be2 0%, #32cd32 100%);
	padding: 80px 0 60px;
	text-align: center;
	position: relative;
}

.nc-legal-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 15, 15, 0.2);
	z-index: 1;
}

.nc-legal-header .nc-container {
	position: relative;
	z-index: 2;
}

.nc-legal-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin: 0 0 20px 0;
	color: #f5f5f5;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nc-legal-subtitle {
	font-size: 1.2rem;
	color: #f5f5f5;
	opacity: 0.9;
	font-weight: 400;
}

/* Legal Content */
.nc-legal-content {
	background-color: #0f0f0f;
	padding: 80px 0;
	min-height: 70vh;
}

.nc-legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.nc-legal-section {
	background-color: #242424;
	margin-bottom: 40px;
	padding: 40px;
	border-radius: 12px;
	border-left: 5px solid #8a2be2;
	box-shadow: 0 8px 32px rgba(138, 43, 226, 0.1);
	transition: all 0.3s ease;
}

.nc-legal-section:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(138, 43, 226, 0.15);
}

.nc-legal-section:last-child {
	margin-bottom: 0;
}

.nc-legal-section h2 {
	font-size: 2.2rem;
	color: #8a2be2;
	margin: 0 0 25px 0;
	font-weight: 700;
	padding-bottom: 15px;
	border-bottom: 2px solid #32cd32;
	position: relative;
}

.nc-legal-section h2::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background-color: #8a2be2;
}

.nc-legal-section h3 {
	font-size: 1.6rem;
	color: #32cd32;
	margin: 30px 0 20px 0;
	font-weight: 600;
}

.nc-legal-section h4 {
	font-size: 1.3rem;
	color: #f5f5f5;
	margin: 25px 0 15px 0;
	font-weight: 600;
}

.nc-legal-section p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 20px;
	color: #f5f5f5;
	text-align: justify;
}

.nc-legal-section ul {
	list-style: none;
	padding-left: 0;
	margin: 20px 0;
}

.nc-legal-section ul li {
	position: relative;
	padding: 8px 0 8px 30px;
	font-size: 1.1rem;
	line-height: 1.6;
	color: #f5f5f5;
	word-wrap: break-word;
}

.nc-legal-section ul li::before {
	content: '▶';
	position: absolute;
	left: 0;
	top: 8px;
	color: #32cd32;
	font-size: 0.8rem;
}

.nc-legal-section strong {
	color: #32cd32;
	font-weight: 600;
}

/* Contact Information Box */
.nc-legal-contact {
	background: linear-gradient(135deg, #8a2be2, #32cd32);
	padding: 30px;
	border-radius: 15px;
	margin: 30px 0;
	position: relative;
	overflow: hidden;
}

.nc-legal-contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 15, 15, 0.85);
	z-index: 1;
}

.nc-legal-contact * {
	position: relative;
	z-index: 2;
}

.nc-legal-contact h3,
.nc-legal-contact h4 {
	color: #32cd32;
	margin-top: 0;
	font-size: 1.5rem;
}

.nc-legal-contact p {
	color: #f5f5f5;
	margin-bottom: 10px;
}

.nc-legal-contact a {
	color: #32cd32;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.nc-legal-contact a:hover {
	color: #8a2be2;
	text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

/* Legal Footer */
.nc-legal-footer {
	background-color: #242424;
	border-top: 3px solid #8a2be2;
	padding: 40px 0;
	margin-top: 60px;
}

.nc-legal-footer .nc-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.nc-legal-footer p {
	color: #f5f5f5;
	margin: 0;
	font-size: 1rem;
}

.nc-legal-links {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.nc-legal-link {
	color: #32cd32;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.nc-legal-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #8a2be2;
	transition: width 0.3s ease;
}

.nc-legal-link:hover {
	color: #8a2be2;
	transform: translateY(-2px);
}

.nc-legal-link:hover::after {
	width: 100%;
}

/* Special Elements */
.nc-legal-highlight {
	background: linear-gradient(
		135deg,
		rgba(138, 43, 226, 0.1),
		rgba(50, 205, 50, 0.1)
	);
	border: 1px solid #8a2be2;
	border-radius: 8px;
	padding: 20px;
	margin: 25px 0;
}

.nc-legal-highlight p {
	margin-bottom: 10px;
}

.nc-legal-warning {
	background-color: rgba(255, 69, 0, 0.1);
	border-left: 5px solid #ff4500;
	padding: 20px;
	margin: 25px 0;
	border-radius: 5px;
}

.nc-legal-warning p {
	color: #ff6b47;
	margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nc-legal-title {
		font-size: 2.5rem;
	}

	.nc-legal-subtitle {
		font-size: 1.1rem;
	}

	.nc-legal-container {
		padding: 0 15px;
	}

	.nc-legal-section {
		padding: 25px 20px;
		margin-bottom: 30px;
	}

	.nc-legal-section h2 {
		font-size: 1.8rem;
	}

	.nc-legal-section h3 {
		font-size: 1.4rem;
	}

	.nc-legal-section p {
		font-size: 1rem;
	}

	.nc-legal-footer .nc-container {
		flex-direction: column;
		text-align: center;
	}

	.nc-legal-links {
		justify-content: center;
	}

	.nc-legal-contact {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.nc-legal-title {
		font-size: 2rem;
	}

	.nc-legal-content {
		padding: 40px 0;
	}

	.nc-legal-section {
		padding: 20px 15px;
	}

	.nc-legal-section h2 {
		font-size: 1.6rem;
	}

	.nc-legal-links {
		flex-direction: column;
		gap: 15px;
	}
}
