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

html {
	scroll-behavior: smooth;
}

.con {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	background: #fff;
	color: #111;
}
.tpc-header {
	padding: 1rem 1.5rem;
	background: #1a1a1a;
	color: white;
	position: relative;
	z-index: 100;
}

.tpc-header-con {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: block;
	background-color: white;
	border-radius: 50%;
	padding: 10px;
	overflow: hidden;
}

.logo img {
	width: 100%;
	max-width: 80px;
}

.tpc-nav ul {
	display: flex;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tpc-nav a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.tpc-nav a:hover {
	color: #e50914;
}

.burger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 25px;
	height: 20px;
	cursor: pointer;
}

.burger span {
	display: block;
	height: 3px;
	background: #fff;
	border-radius: 2px;
	transition: 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.burger {
		display: flex;
	}

	.tpc-nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #2b2b2b;
		display: none;
		flex-direction: column;
		padding: 1rem 0;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
	}

	.tpc-nav ul {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.tpc-nav.active {
		display: flex;
	}
}

.hero {
	background: linear-gradient(to right, #e60000, #000);
	color: #fff;
	padding: 4rem 2rem;
	text-align: center;
}
.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}
.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}
.hero .buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
}
.hero .buttons button,
.hero a {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
	text-decoration: none;
}
.btn-login {
	background: #fff;
	color: #000;
}
.btn-register {
	background: red;
	color: #fff;
}

/* General modal layout */
.casino-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	justify-content: center;
	align-items: center;
	padding: 1rem;
}

.casino-modal-content {
	background: #1c1c1c;
	color: #fff;
	padding: 2rem;
	border-radius: 12px;
	max-width: 400px;
	width: 100%;
	position: relative;
	box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
	border: 2px solid #e50914;
}

.casino-modal-content h2 {
	font-family: 'Arial Black', sans-serif;
	color: #e50914;
	margin-bottom: 1rem;
	text-align: center;
}

.casino-modal-content input {
	display: block;
	width: 100%;
	margin: 0.5rem 0;
	padding: 0.75rem;
	border-radius: 6px;
	border: none;
	background: #2c2c2c;
	color: white;
	font-size: 1rem;
}

.casino-modal-content input:focus {
	outline: 2px solid #e50914;
}

.casino-modal-content button[type='submit'] {
	margin-top: 1rem;
	background: linear-gradient(90deg, #e50914, #bf0000);
	color: #fff;
	border: none;
	padding: 0.75rem;
	width: 100%;
	font-weight: bold;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s;
}

.casino-modal-content button[type='submit']:hover {
	background: #ff1f2f;
}

.casino-close {
	position: absolute;
	top: 12px;
	right: 12px;
	font-size: 1.5rem;
	color: #fff;
	background: transparent;
	border: none;
	cursor: pointer;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
	.casino-modal-content {
		padding: 1.5rem;
		border-radius: 10px;
	}

	.casino-modal-content h2 {
		font-size: 1.25rem;
	}

	.casino-modal-content input,
	.casino-modal-content button[type='submit'] {
		font-size: 0.95rem;
	}
}

.tpc-about {
	padding: 4rem 1rem;
	background: #1e1e1e;
	color: #f9f9f9;
}

.tpc-about__container {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.tpc-about__image {
	flex: 1 1 40%;
}

.tpc-about__image img {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.tpc-about__content {
	flex: 1 1 55%;
}

.tpc-about__content h2 {
	font-size: 2rem;
	color: #e50914;
	margin-bottom: 1rem;
}

.tpc-about__content p {
	margin-bottom: 1rem;
	line-height: 1.6;
	font-size: 1rem;
	color: #e2e2e2;
}

@media (max-width: 768px) {
	.tpc-about__container {
		flex-direction: column;
		text-align: center;
	}
	.tpc-about__content h2 {
		font-size: 1.6rem;
	}
	.tpc-about__content p {
		font-size: 0.95rem;
	}
}

.games-section {
	padding: 60px 20px;
	background-color: #1e1e1e;
	color: #fff;
	text-align: center;
}

.games-section h2 {
	font-size: 2rem;
	color: #e63946;
	margin-bottom: 30px;
}

.games-list {
	display: flex;
	gap: 30px;
	overflow-x: auto;
	padding-bottom: 10px;
	scroll-snap-type: x mandatory;
}

.game-item {
	flex: 0 0 auto;
	background: #2d2d2d;
	border-radius: 12px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	padding: 15px;
	/* min-width: 200px; */
	/* max-width: 200px; */
	scroll-snap-align: start;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

.game-item img {
	width: auto;
	height: 250px;
	border-radius: 8px;
	transition: transform 0.3s;
}

.game-item:hover {
	box-shadow: 0 8px 24px rgba(255, 0, 0, 0.5);
}

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

.game-item h3 {
	margin: 10px 0;
	font-size: 1.1rem;
	color: #f1f1f1;
}

.game-btn {
	background: #e63946;
	color: white;
	text-decoration: none;
	padding: 8px 14px;
	border-radius: 6px;
	display: inline-block;
	margin-top: 5px;
	transition: background 0.3s;
}

.game-btn:hover {
	background: #c21828;
}

/* Scrollbar styles for WebKit browsers */
.games-list::-webkit-scrollbar {
	height: 6px;
}
.games-list::-webkit-scrollbar-thumb {
	background: #e63946;
	border-radius: 3px;
}

/* Responsive */
@media (max-width: 600px) {
	.games-section h2 {
		font-size: 1.6rem;
	}

	.game-btn {
		padding: 6px 10px;
		font-size: 0.9rem;
	}
}

.tpc-advantages {
	background: linear-gradient(to bottom, #1b1b1b, #000);
	color: #fff;
	padding: 60px 20px;
	text-align: center;
}

.tpc-title {
	font-size: 2.5rem;
	color: #ff0000;
	margin-bottom: 40px;
	text-shadow: 0 0 10px #000;
}

.tpc-advantages-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	opacity: 0;
	transform: translateY(50px);
	animation: fadeInUp 1s forwards;
}

.tpc-adv-card {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid #ff0000;
	padding: 30px;
	border-radius: 12px;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

.tpc-adv-card:hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.tpc-adv-card img {
	width: 60px;
	margin-bottom: 20px;
}

.tpc-adv-card h3 {
	color: #fff;
	margin-bottom: 10px;
	font-size: 1.4rem;
}

.tpc-adv-card p {
	color: #ccc;
	font-size: 0.95rem;
}

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

/* Responsive tweaks */
@media (max-width: 600px) {
	.tpc-title {
		font-size: 2rem;
	}
	.tpc-adv-card {
		padding: 20px;
	}
}

/* FAQ Section Styles */
.faq-casino-section {
	padding: 60px 20px;
	background: #110f1a;
	color: #fff;
	font-family: 'Arial', sans-serif;
}

.faq-casino-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.faq-casino-image img {
	max-width: 650px;
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.faq-casino-content {
	flex: 1;
	min-width: 300px;
}

.faq-casino-content h2 {
	font-size: 32px;
	margin-bottom: 24px;
	color: #e63946;
	text-align: left;
}

.faq-casino-list .faq-item {
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 10px;
}

.faq-question {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	padding: 10px 0;
	cursor: pointer;
	transition: color 0.3s;
}

.faq-question:hover {
	color: #ff4d4d;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	font-size: 16px;
	padding: 0 5px;
	color: #ccc;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	margin-top: 5px;
	animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.faq-casino-container {
		flex-direction: column;
		align-items: center;
	}

	.faq-casino-image img {
		max-width: 100%;
	}

	.faq-casino-content h2 {
		text-align: center;
	}
}

.casino-contact {
	background: #111014;
	color: #fff;
	padding: 60px 20px;
	font-family: 'Segoe UI', sans-serif;
}

.casino-contact-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 40px;
	align-items: center;
	flex-wrap: wrap;
}

.casino-form-block {
	flex: 1;
	min-width: 280px;
}

.casino-form-block h2 {
	font-size: 32px;
	margin-bottom: 24px;
	color: #e63946;
}

.casino-form-block label {
	display: block;
	margin: 12px 0 6px;
	font-weight: 600;
	font-size: 15px;
}

.casino-form-block input,
.casino-form-block textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid #333;
	border-radius: 8px;
	background-color: #1c1b22;
	color: #fff;
	font-size: 16px;
}

.casino-form-block input::placeholder,
.casino-form-block textarea::placeholder {
	color: #aaa;
}

.casino-btn {
	background-color: #e5004c;
	color: #fff;
	border: none;
	margin-top: 20px;
	padding: 12px 20px;
	font-size: 16px;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.casino-btn:hover {
	background-color: #ff005a;
}

.casino-contact-image {
	flex: 1;
	min-width: 280px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.casino-contact-image img {
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 0 25px rgba(255, 0, 100, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
	.casino-contact-container {
		flex-direction: column-reverse;
		gap: 30px;
	}

	.casino-form-block h2 {
		text-align: center;
	}

	.casino-btn {
		width: 100%;
	}
}

.age-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.age-modal-content {
	background: white;
	max-width: 500px;
	width: 90%;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	font-family: 'Segoe UI', sans-serif;
	box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.age-modal-content h2 {
	color: #e5004c;
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

.age-modal-content p {
	font-size: 1rem;
	color: #333;
	margin-bottom: 1.5rem;
}

.age-btns {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-confirm,
.btn-deny {
	flex: 1 1 45%;
	padding: 12px;
	border: none;
	font-size: 1rem;
	border-radius: 8px;
	cursor: pointer;
	transition: 0.3s ease;
}

.btn-confirm {
	background: green;
	color: #000;
}

.btn-confirm:hover {
	background: rgb(115, 149, 115);
}

.btn-deny {
	background: #e53935;
	color: #fff;
}

.btn-deny:hover {
	background: #c62828;
}

.age-icon {
	width: 60px;
	margin-bottom: 1rem;
}

@media (max-width: 480px) {
	.age-modal-content {
		padding: 1.2rem;
	}

	.age-modal-content h2 {
		font-size: 1.4rem;
	}

	.btn-confirm,
	.btn-deny {
		font-size: 0.9rem;
		padding: 10px;
	}
}

.cookie-fun-banner {
	position: fixed;
	bottom: 0;
	width: 100%;
	background: linear-gradient(to right, #000, #e60000);
	color: #fff;
	padding: 1rem;
	z-index: 9999;
	animation: slideUp 1s ease;
	display: none;
}

.cookie-fun-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	font-family: 'Comic Sans MS', cursive, sans-serif;
	font-size: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.cookie-fun-content a {
	color: #ffeb3b;
	font-weight: bold;
}

.cookie-fun-btn {
	background: #fff;
	color: #5c007a;
	padding: 0.6rem 1.4rem;
	border: none;
	border-radius: 25px;
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s ease;
}

.cookie-fun-btn:hover {
	background: #ffeb3b;
	color: #000;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0%);
	}
}

@media (max-width: 480px) {
	.cookie-fun-content {
		font-size: 0.9rem;
	}

	.cookie-fun-btn {
		font-size: 0.9rem;
	}
}

.casino-footer {
	background: #1a1a1a;
	color: #fff;
	font-family: 'Segoe UI', sans-serif;
	padding: 3rem 1rem 1rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-18plus .footer-18-icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.footer-18plus p,
.footer-contact p,
.footer-links ul,
.footer-newsletter input {
	margin-bottom: 0.5rem;
}

.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links li a {
	color: #e53935;
	text-decoration: none;
	font-weight: 500;
}

.footer-newsletter input {
	width: 100%;
	padding: 0.5rem;
	border: none;
	border-radius: 5px;
	margin-top: 0.3rem;
}

.footer-newsletter button {
	background: #e53935;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	margin-top: 0.5rem;
	cursor: pointer;
	font-weight: bold;
	color: #000;
}

.footer-disclaimer {
	/* background: rgba(255, 255, 255, 0.1); */
	padding: 1rem;
	margin-top: 2rem;
	border-radius: 8px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	font-size: 0.95rem;
}

.footer-disclaimer p {
	text-align: center;
	color: #e53935;
	font-size: 18px;
}

.footer-bottom {
	text-align: center;
	font-size: 0.85rem;
	color: #ccc;
	margin-top: 2rem;
}

.hidden-message {
	display: none;
	color: #00e676;
	font-weight: 500;
	margin-top: 0.5rem;
	animation: fadeIn 0.4s ease-in-out;
}

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