.header {
	background-color: #0d0d0d;
	padding: 10px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid #333;
	border-radius: 8px 8px 0 0;
}

.okwin-floating-btn {
	position: fixed;
	left: 15px;
	bottom: 20px;
	background: linear-gradient(135deg, #ff7a18, #ff3d00);
	color: #ffffff;
	padding: 13px 20px;
	border: 2px dashed #000;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	z-index: 99999;
	line-height: 1.2;
	box-shadow: 0 4px 0 #000;
	animation: pulseGlow 1.6s infinite;
	transition: all 0.25s ease;
}

/* Hover effect */
.okwin-floating-btn:hover {
	transform: scale(1.08) rotate(-1deg);
	box-shadow: 0 6px 0 #000;
}

/* Pulse + glow animation */
@keyframes pulseGlow {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 90, 30, 0.7);
	}
	50% {
		transform: scale(1.06);
		box-shadow: 0 0 18px 6px rgba(255, 90, 30, 0.8);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 90, 30, 0.7);
	}
}

.header-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
}

.top-bar {
	width: 100%;
	background: #0d0d0d;
	padding: 10px 0;
}

.top-bar-content {
	max-width: 1200px;
	margin: auto;
	display: flex;
	justify-content: flex-end; /* Right side */
	gap: 12px;
	padding: 0 15px;
}

/* Common button style */
.btn-secondary {
	border: none;
	border-radius: 6px;
	padding: 10px 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-secondary a {
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	display: block;
}

/* Different colors */
.btn-secondary:nth-child(1) {
	background: #ff8d6d;
}

.btn-secondary:nth-child(2) {
	background: linear-gradient(113.16deg, #ff8d6d 0%, #ff8d6d 100%);
}

.btn-secondary:nth-child(3) {
	background: #ff8d6d;
}

/* Hover effect */
.btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Mobile responsive */
@media (max-width: 600px) {
	.top-bar-content {
		justify-content: center;
		flex-wrap: wrap;
	}
}

.logo {
	height: 70px;
	width: auto;
}

/* Center logo only on mobile */
@media (max-width: 767px) {
	.logo {
		display: block;
		height: 50px;
		margin: -1px 3px;
	}
}

.nav-menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 30px;
	flex: 1;
	margin-left: 40px;
	margin-right: 50px;
}

.nav-item {
	position: relative;
}

.nav-link {
	color: #fff;
	text-decoration: none;
	padding: 10px 0;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: #ff0000;
}

.nav-link.active {
	color: #ff0000;
}

.dropdown-arrow {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
	transform: rotate(180deg);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #1a1a1a;
	border: 1px solid #333;
	border-radius: 4px;
	min-width: 200px;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

.nav-item:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item {
	padding: 10px 20px;
	color: #fff;
	text-decoration: none;
	display: block;
	font-size: 13px;
	transition: background-color 0.3s ease;
}

.dropdown-item:hover {
	background-color: #333;
	color: #ff0000;
}

.right-section {
	display: flex;
	align-items: center;
	gap: 15px;
}

/* Common styles for both buttons */
.register-btn {
	display: inline-block;
	padding: 10px 30px;
	font-size: 14px;
	font-weight: bold;
	border: none;
	border-radius: 6px;
	min-width: 120px;
	text-align: center;
	text-decoration: none;
	line-height: 1;
	height: 42px;
	box-sizing: border-box;
	vertical-align: middle;
	transition: background-color 0.3s ease;
	position: relative;
	top: 1px;
}

.download-btn-main {
	background-color: #fff;
	color: #000;
	padding: 10px 30px;
	font-size: 14px;
	font-weight: bold;
	border: none;
	border-radius: 6px;
	min-width: 120px;
	height: 42px;
	line-height: 1;
	box-sizing: border-box;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	vertical-align: middle;
	margin-top: 20px !important;
}

/* Red Register button */
.register-btn {
	background-color: #ff0000;
	color: #fff;
}

.register-btn:hover {
	background-color: #e60000;
}

/* White Download button */
.download-btn-main {
	background-color: #fff;
	color: #000;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 5px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background-color: #fff;
	margin: 3px 0;
	transition: 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.header {
		padding: 10px 15px;
		flex-wrap: wrap;
	}

	.nav-menu {
		display: none;
		width: 100%;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		background-color: #000;
		border-top: 1px solid #333;
		padding: 0;
		gap: 0;
		margin-left: 0;
		z-index: 1000;
	}

	.nav-menu.active {
		display: flex;
	}

	.hamburger {
		display: flex;
		border: 2px solid #fff;
		padding: 7px;
		margin-top: 5px;
		border-radius: 3px;
	}

	.right-section {
		width: 100%;
		justify-content: center;
		gap: 10px;
		margin-top: 15px;
		order: 3;
	}

	.register-btn,
	.download-btn {
		flex: 1;
		max-width: 150px;
		padding: 12px 16px;
		font-size: 13px;
	}

	.dropdown-menu {
		display: none;
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background-color: #333;
		margin-top: 0;
		border-radius: 0;
		padding: 0;
	}

	.nav-item {
		width: 100%;
		border-bottom: 1px solid #333;
	}

	.nav-item:last-child {
		border-bottom: none;
	}

	.nav-link {
		padding: 20px;
		font-size: 16px;
		border: none;
		justify-content: space-between;
	}

	.nav-item.dropdown-active .dropdown-menu {
		display: block;
	}

	.nav-item.dropdown-active .dropdown-arrow {
		transform: rotate(180deg);
	}

	body {
		padding-top: 60px; /* mobile header thoda zyada height leta hai */
	}
}

/* Very small screens */
@media (max-width: 480px) {
	.header {
		padding: 8px 10px;
	}

	.register-btn,
	.download-btn {
		padding: 10px 12px;
		font-size: 12px;
		min-width: 80px;
	}

	.logo {
		font-size: 18px;
	}

	.logo span {
		font-size: 16px;
		padding: 2px 5px;
	}
}

body {
	margin: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #f5f4f1;
	color: white;
	padding-top: 130px;
}

.containers {
	max-width: 1400px;
	margin-top: 130px;
	margin: auto;
	padding: 30px 20px;
	background-color: #121212;
}

h1 {
	font-size: 28px;
	font-weight: 700 !important;
	text-transform: uppercase;
	color: white;
}

p {
	font-size: 16px;
	color: #cfcfcf;
	line-height: 1.6;
}

.section-main {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 15px;
	align-items: stretch;
	padding: 20px;
}

.bonus-card {
	background-color: #1a1a1a;
	width: 25%;
	min-width: 220px;
	border-radius: 12px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
	flex-shrink: 0;
}

.image-box {
	width: 60%;
	position: relative;
}

.image-box img {
	width: 100%;
	height: 80%;
	object-fit: cover;
	border-radius: 10px;
	margin-top: 30px;
}

.bonus-card h3 {
	color: #ffc107;
	font-size: 15px;
	font-style: italic;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.bonus-amount {
	background: #000;
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	padding: 10px 0;
	border-radius: 5px;
	margin-bottom: 10px;
	letter-spacing: 2px;
}

.bonus-card p {
	margin: 10px 0;
	font-size: 14px;
	color: #ccc;
}

.bonus-card span {
	color: #ff8d6d;
	font-weight: bold;
}

.promo-box {
	background-color: #1a1a1a;
	border-radius: 5px;
	padding: 8px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
}

.promo-code {
	color: white;
	font-weight: bold;
	font-size: 14px;
}

.copy-btn {
	background-color: #444;
	border: none;
	color: white;
	padding: 5px 10px;
	cursor: pointer;
	border-radius: 3px;
	font-size: 13px;
}

.register-btn {
	margin-top: 20px;
	width: 100%;
	background-color: #ff8d6d;
	color: #000;
	font-weight: 700;
	font-size: 16px;
	padding: 12px 0;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	text-align: center;
	transition: background-color 0.3s ease;
}

.register-btn:hover {
	background-color: #d32f2f;
}

.overlay-text {
	position: absolute;
	bottom: 20px;
	left: 20px;
	color: white;
	font-weight: bold;
	font-size: 22px;
	text-shadow: 1px 1px 3px black;
}

@media (max-width: 768px) {
	.section {
		flex-direction: column;
	}

	.bonus-box,
	.image-box {
		width: 100%;
	}
}

.feature-menu {
	display: flex;
	gap: 16px;
	padding: 10px;
	background-color: #f2f0eb;
	flex-wrap: wrap;
	justify-content: center;
}

.feature-item {
	background-color: #121212;
	border-radius: 10px;
	padding: 15px 10px;
	width: 120px;
	text-align: center;
	color: white;
	font-weight: bold;
	font-size: 14px;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		background-color 0.3s;
	margin-top: 20px;
}

.feature-item:hover {
	transform: translateY(-5px);
	background-color: #1a1a1a;
}

.feature-item img {
	width: 36px;
	height: 36px;
	margin-bottom: 8px;
}

.table-container {
	background-color: #ffffff;
	padding: 20px;
	border-radius: 12px;
	width: 100%;
	max-width: 1100px;
	margin: auto;
	font-family: Arial, sans-serif;
	overflow-x: auto;
	box-sizing: border-box;
}

.table-container table {
	width: 100%;
	border-collapse: collapse;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.table-container {
		padding: 12px;
	}

	.table-container table {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.table-container {
		padding: 8px;
	}

	.table-container table {
		font-size: 13px;
	}
}

.table-container h3 {
	margin-bottom: 15px;
	font-size: 18px;
	color: #121212;
}

.table-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.table-links button {
	background-color: white;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 8px 14px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.table-links button:hover {
	background-color: #f0f0f0;
}

.sports-container {
	max-width: 1200px;
	margin: 30px auto;
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sports-header {
	background: #1a1a1a;
	color: white;
	padding: 15px 25px;
	font-size: 20px;
	font-weight: bold;
}

.sports-header::before {
	content: '🏁 ';
	margin-right: 8px;
}

.main-content {
	display: flex;
	height: 400px;
}

.sports-grid {
	flex: 1;
	padding: 30px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

.sport-card {
	background: #f5f5f5;
	border-radius: 12px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sport-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sport-icon {
	font-size: 40px;
	margin-bottom: 10px;
}

.sport-name {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

.esports-card {
	background: #3b82f6;
	color: white;
}

.esports-card .sport-name {
	color: white;
}

@media (max-width: 768px) {
	.main-content {
		flex-direction: column;
		height: auto;
	}

	.left-panel {
		width: 100%;
	}

	.sports-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.bonus-container {
	max-width: 1200px;
	margin: 0 auto;
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bonus-header {
	background: #1a1a1a;
	color: white;
	padding: 8px 25px;
	font-size: 20px;
	font-weight: bold;
	position: relative;
}

.bonus-header::before {
	background: #4169e1;
	color: white;
	padding: 8px 12px;
	border-radius: 8px;
	margin-right: 10px;
	font-size: 16px;
}

.main-content {
	display: flex;
	min-height: 500px;
}

.left-content {
	flex: 1;
	padding: 30px;
	background: #f8f9fa;
}

.description {
	color: #353434;
	font-size: 17px;
	line-height: 1.6;
	margin-bottom: 25px;
}

.bonus-list {
	margin-bottom: 30px;
}

.bonus-list ul {
	list-style: none;
	padding: 0;
}

.bonus-list li {
	color: #333;
	font-size: 17px;
	margin-bottom: 12px;
	padding-left: 20px;
	position: relative;
	line-height: 1.5;
}

.bonus-list li::before {
	content: '•';
	color: #333;
	font-weight: bold;
	position: absolute;
	left: 0;
}

.bonus-list strong {
	font-weight: bold;
}

.start-button {
	background: #ff8d6d;
	color: #333;
	border: none;
	padding: 15px 40px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	border-radius: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.start-button:hover {
	background: #f39c12;
}

.right-banner {
	width: 100%;
	max-width: 600px;
	/* Set a max width */
	margin: auto;
	/* Center the whole box */
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.banner-image {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
	max-width: 100%;
	margin: 0 auto;
	margin-right: 80px;
	border-radius: 20px;
}

@media (max-width: 768px) {
	.right-banner {
		padding: 30px 15px;
	}

	.banner-image {
		width: 100%;
		max-width: 90%;
	}
}

@media (max-width: 768px) {
	.main-content {
		flex-direction: column;
	}

	.right-banner {
		width: 100%;
		height: 300px;
	}

	.parimatch-logo {
		font-size: 36px;
	}

	.active-bonus-text {
		font-size: 24px;
	}
}

.bonus-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin: 30px auto;
	padding: 20px;
	max-width: 1170px;
	align-items: center;
}

.bonus-text {
	flex: 1 1 55%;
	padding: 20px;
}

.bonus-text h2 {
	background: #1a1a1a;
	color: white;
	padding: 15px 25px;
	font-size: 20px;
	font-weight: bold;
	position: relative;
}

.bonus-text p {
	font-size: 17px;
	line-height: 1.6;
	color: #333;
}

.bonus-image {
	flex: 1 1 40%;
	text-align: center;
}

.bonus-image img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.bonus-section {
		flex-direction: column;
		padding: 15px;
	}

	.bonus-text,
	.bonus-image {
		flex: 1 1 100%;
		padding: 10px 0;
		text-align: center;
	}

	.bonus-text h2 {
		font-size: 20px;
	}

	.bonus-text p {
		font-size: 14px;
	}
}

.main-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.page-header {
	text-align: center;
	margin-bottom: 40px;
	padding: 40px 0;
	background: linear-gradient(45deg, #ff0000, #ff7761);
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.page-header h1 {
	font-size: 3rem;
	margin-bottom: 10px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	color: white;
}

.page-header p {
	color: white;
}

.content-block {
	background: #fff;
	padding: 0px 30px 30px;
	border-radius: 15px;
	border: 1px solid #e9ecef;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.content-block h2 {
	color: #f8f9fa;
	font-size: 2rem;
	margin-bottom: 20px;
	text-align: left;
	border-bottom: none;
	padding-bottom: 10px;
	background: #0c0c0c;
	padding: 15px 20px;
	border-radius: 8px;
	border-left: 4px solid #ff7761;
	display: flex;
	align-items: center;
	gap: 10px;
}

.content-block h2:before {
	content: 'ℹ️';
	font-size: 1.2rem;
	background: #ff7761;
	color: white;
	padding: 8px;
	border-radius: 6px;
	display: inline-block;
}

.feature-image {
	width: 100%;
	height: 200px;
	background: #f8f9fa;
	border-radius: 10px;
	margin: 20px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ff7761;
	font-size: 1.2rem;
	font-weight: bold;
	border: 1px solid #e9ecef;
}

.feature-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	padding: 20px 0;
	color: white;
}

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100px;
	text-align: center;
	color: white;
}

.feature-icon {
	width: 40px;
	height: 40px;
	color: #ff8d6d;
	margin-bottom: 8px;
}

.feature-item span {
	font-weight: 500;
	color: #fdfdfd;
}

.instruction-group {
	background: #f8f9fa;
	padding: 20px;
	margin: 20px 0;
	border-radius: 10px;
	border-left: 4px solid #ff7761;
}

.instruction-group h3 {
	color: #000;
	font-size: 1.3rem;
	margin-bottom: 15px;
}

.numbered-steps {
	list-style: none;
	counter-reset: step-counter;
}

.numbered-steps li {
	counter-increment: step-counter;
	margin: 10px 0;
	padding: 10px;
	background: #f8f9fa;
	border-radius: 5px;
	position: relative;
	padding-left: 50px;
}

.numbered-steps li::before {
	content: counter(step-counter);
	position: absolute;
	left: 15px;
	top: 10px;
	background: #ff7761;
	color: white;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 0.9rem;
}

.action-btn {
	display: inline-block;
	/* Makes <a> behave like a button */
	margin: 20px auto;
	/* Vertical margin + center horizontally when in block container */
	background: linear-gradient(45deg, #ff0000, #ff7761);
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 25px;
	font-size: 1.1rem;
	font-weight: bold;
	text-decoration: none;
	/* Removes underline */
	text-align: center;
	cursor: pointer;
}

/* If you want it perfectly centered in full width container: */
.center-wrapper {
	text-align: center;
}

.action-btn:hover {
	background: linear-gradient(45deg, #ff7761, #ff0000);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.payment-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin: 20px 0;
}

.payment-option {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 10px;
	text-align: center;
	border: 1px solid #e9ecef;
	color: #000;
}

.reward-card {
	background: #f8f9fa;
	padding: 20px;
	margin: 15px 0;
	border-radius: 10px;
	border: 1px solid #e9ecef;
}

.reward-card h3 {
	color: #000;
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.question-answer {
	background: #f8f9fa;
	padding: 20px;
	margin: 15px 0;
	border-radius: 10px;
	border-left: 4px solid #ff7761;
}

p {
	color: #000;
}

li {
	color: #000;
}

.question-answer h3 {
	color: #000;
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.info-note {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 8px;
	margin: 15px 0;
	border-left: 4px solid #ff7761;
	color: #000;
}

.info-note strong {
	color: #000;
}

.box strong {
	color: #000;
}

@media (max-width: 768px) {
	.page-header h1 {
		font-size: 2rem;
	}

	.content-block {
		padding: 20px;
	}

	.content-block h2 {
		font-size: 1.5rem;
	}

	.main-wrapper {
		padding: 10px;
	}
}

/* footer */

.footerSection {
	background-color: #ff8d6d;
	color: #fff;
	padding: 30px 20px;
	text-align: center;
}

.footerContainer {
	max-width: 1000px;
	margin: 0 auto;
}

.footerLinks {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-bottom: 15px;
}

.footerLinks a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
}

.footerLinks a:hover {
	text-decoration: underline;
}

.footerCopy {
	font-size: 14px;
}

@media (max-width: 600px) {
	.footerLinks {
		flex-direction: column;
		gap: 10px;
	}
}

/* about */
.container-about {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	color: #000;
}

.section {
	margin-bottom: 25px;
	border: 2px solid #ff8d6d;
	padding: 20px;
	background-color: #fff;
	/* Removed black background */
	color: #000;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	animation: slideUp 0.8s ease-out;
	line-height: 1.6;
}

.section h2 {
	color: #ff8d6d;
	padding-bottom: 5px;
	font-size: 1.9em;
	transition: color 0.3s;
}

.section h2:hover {
	color: #ff3333;
}

.button {
	background-color: #ff8d6d;
	color: #fff;
	padding: 12px 25px;
	text-decoration: none;
	display: inline-block;
	border-radius: 5px;
	font-weight: bold;
	transition: all 0.3s ease;
	animation: bounce 1.5s infinite;
}

.button:hover {
	background-color: #cc0000;
	transform: translateY(-2px);
}

.contact {
	color: #fff;
	padding: 15px;
	text-align: center;
	font-size: 1.1em;
	border-top: 2px solid #ff8d6d;
	animation: fadeIn 1s ease-in 1s backwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-5px);
	}

	60% {
		transform: translateY(-3px);
	}
}

/* download page */
.apk-section {
	border: 2px solid red;
	border-radius: 10px;
	padding: 25px;
	margin: 20px auto;
	max-width: 1100px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.apk-section h2 {
	color: #e53935;
	margin-bottom: 15px;
	font-size: 28px;
}

.apk-section p,
.apk-section li {
	font-size: 17px;
	color: #333;
	line-height: 1.6;
}

.apk-section ul {
	padding-left: 20px;
}

.apk-section img {
	max-width: 100%;
	height: auto;
	margin: 15px 0;
	border-radius: 10px;
}

.download-btn {
	display: block;
	/* block banayenge taaki margin work kare */
	padding: 12px 20px;
	background: #ff8d6d;
	color: #faf9f9;
	font-weight: bold;
	border-radius: 6px;
	text-decoration: none;
	margin: 15px auto;
	/* auto margin = center horizontally */
	width: fit-content;
	/* button sirf text ke hisaab se rahe */
}

@media (max-width: 768px) {
	.apk-section {
		padding: 15px;
	}

	.apk-section h2 {
		font-size: 24px;
	}

	.apk-section p,
	.apk-section li {
		font-size: 15px;
	}
}

.faq-item {
	margin-bottom: 20px;
}

.faq-item p {
	margin: 5px 0;
}

/* contact page */
.containerContact {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	color: #000;
}

.sectionContact {
	margin-bottom: 25px;
	border: 2px solid #ff8d6d;
	padding: 20px;
	background-color: #fff;
	color: #000;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	animation: slideUp 0.8s ease-out;
	line-height: 1.6;
}

.sectionContact h2 {
	color: #ff8d6d;
	padding-bottom: 5px;
	font-size: 1.9em;
	transition: color 0.3s;
}

.sectionContact h2:hover {
	color: #ff3333;
}

.buttonContact {
	background-color: #ff8d6d;
	color: #fff;
	padding: 12px 25px;
	text-decoration: none;
	display: inline-block;
	border-radius: 5px;
	font-weight: bold;
	transition: all 0.3s ease;
	animation: bounce 1.5s infinite;
}

.buttonContact:hover {
	background-color: #cc0000;
	transform: translateY(-2px);
}

.contactInfo {
	color: #fff;
	padding: 15px;
	text-align: center;
	font-size: 1.1em;
	border-top: 2px solid #ff8d6d;
	animation: fadeIn 1s ease-in 1s backwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-5px);
	}

	60% {
		transform: translateY(-3px);
	}
}

/* disclaimber */

.containerDisclaimer {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	color: #000;
}

.sectionDisclaimer {
	margin-bottom: 25px;
	border: 2px solid #ff8d6d;
	padding: 20px;
	background-color: #fff;
	color: #000;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	animation: slideUp 0.8s ease-out;
	line-height: 1.6;
}

.sectionDisclaimer h2 {
	color: #ff8d6d;
	padding-bottom: 5px;
	font-size: 1.9em;
	transition: color 0.3s;
}

.sectionDisclaimer h2:hover {
	color: #ff3333;
}

.buttonDisclaimer {
	background-color: #ff8d6d;
	color: #fff;
	padding: 12px 25px;
	text-decoration: none;
	display: inline-block;
	border-radius: 5px;
	font-weight: bold;
	transition: all 0.3s ease;
	animation: bounce 1.5s infinite;
}

.buttonDisclaimer:hover {
	background-color: #cc0000;
	transform: translateY(-2px);
}

.contactInfoDisclaimer {
	color: #fff;
	padding: 15px;
	text-align: center;
	font-size: 1.1em;
	border-top: 2px solid #ff8d6d;
	animation: fadeIn 1s ease-in 1s backwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-5px);
	}

	60% {
		transform: translateY(-3px);
	}
}

/* invite  code page */

.invite-container {
	max-width: 1200px;
	margin: 20px auto;
	padding: 20px;
	background-color: #fff;
	border-radius: 10px;
}

.invite-section {
	border: 2px solid #ff8d6d;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 30px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.invite-section h1 {
	color: #000;
}

.invite-section h2,
.invite-section h3 {
	color: #ff8d6d;
}

.invite-section ul {
	padding-left: 20px;
}

.invite-section ul li {
	margin-bottom: 8px;
}

.faq-section {
	background: #fff3f3;
	border: 1px solid #ff8d6d;
	padding: 25px;
	border-radius: 10px;
	margin-top: 40px;
}

.faq-section h2 {
	color: #d32f2f;
	font-size: 24px;
	margin-bottom: 20px;
	border-bottom: 2px solid #ff8d6d;
	padding-bottom: 10px;
}

.faq-section h3 {
	color: black;
}

.faq-item h3 {
	color: black;
}

.faq-item {
	margin-bottom: 20px;
}

.faq-item strong {
	display: block;
	color: #333;
	margin-bottom: 5px;
}

.faq-item p {
	margin: 0;
}

/* login page */

.container1 {
	width: 100%;
	max-width: 1200px;
	margin: 20px auto;
	padding-bottom: 40px;
}

.box {
	background: #fff;
	border: 2px solid #ff8d6d;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
	padding: 25px 30px;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.box h2 {
	color: #ff8d6d;
	margin-bottom: 15px;
}

.box ul {
	padding-left: 20px;
}

.box li {
	margin-bottom: 10px;
}

.box h3 {
	font-size: 20px;
	margin-top: 25px;
	color: #000;
}

.btn {
	display: inline-block;
	background: #ff8d6d;
	color: #fff;
	padding: 20px 35px;
	text-align: center;
	align-items: center;
	border: none;
	border-radius: 6px;
	font-weight: bold;
	cursor: pointer;
	margin-top: 15px;
	transition: background 0.3s ease;
}

.btn:hover {
	background: #d32f2f;
}

@media (max-width: 768px) {
	.box {
		padding: 20px;
	}
}

/* colour-tading */

.trading-section {
	border: 2px solid red;
	border-radius: 10px;
	padding: 25px;
	margin: 20px auto;
	max-width: 1100px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.trading-section h2 {
	color: #e53935;
	font-size: 28px;
	margin-bottom: 15px;
}

.trading-section p,
.trading-section li {
	font-size: 17px;
	color: #333;
	line-height: 1.6;
}

.trading-section ul {
	padding-left: 20px;
}

.trading-section img {
	max-width: 100%;
	height: auto;
	margin: 15px 0;
	border-radius: 10px;
}

.faq-item {
	margin-bottom: 20px;
}

.faq-item p {
	margin: 5px 0;
}

@media (max-width: 768px) {
	.trading-section {
		padding: 15px;
	}

	.trading-section h2 {
		font-size: 24px;
	}

	.trading-section p,
	.trading-section li {
		font-size: 15px;
	}
}

/* gift code */

.giftcode-section {
	border: 2px solid red;
	border-radius: 10px;
	padding: 25px;
	margin: 20px auto;
	max-width: 1100px;
	box-shadow: 0 4px 10px rgba(255, 0, 0, 0.1);
}

.giftcode-section h2 {
	color: #e53935;
	font-size: 28px;
	margin-bottom: 15px;
}

.giftcode-section h3 {
	color: #131212;
	font-size: 20px;
	margin-top: 25px;
}

.giftcode-section p,
.giftcode-section li {
	font-size: 16px;
	color: #333;
	line-height: 1.6;
}

.giftcode-section ul {
	padding-left: 20px;
}

.giftcode-section img {
	max-width: 100%;
	height: auto;
	margin: 15px 0;
	border-radius: 10px;
}

.faq-item {
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.giftcode-section {
		padding: 15px;
	}

	.giftcode-section h2 {
		font-size: 24px;
	}

	.giftcode-section h3 {
		font-size: 18px;
	}

	.giftcode-section p,
	.giftcode-section li {
		font-size: 15px;
	}
}

/* aviator game  */

.aviator-section {
	border: 2px solid red;
	border-radius: 10px;
	padding: 25px;
	margin: 20px auto;
	max-width: 1100px;
	box-shadow: 0 4px 10px rgba(255, 0, 0, 0.1);
}

.aviator-section h2 {
	color: #e53935;
	font-size: 28px;
	margin-bottom: 15px;
}

.aviator-section h3 {
	color: #0f0f0f;
	font-size: 20px;
	margin-top: 25px;
}

.aviator-section p,
.aviator-section li {
	font-size: 17px;
	color: #333;
	line-height: 1.6;
}

.aviator-section ul {
	padding-left: 20px;
}

.aviator-section img {
	max-width: 100%;
	height: auto;
	margin: 15px 0;
	border-radius: 10px;
}

.faq-item {
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.aviator-section {
		padding: 15px;
	}

	.aviator-section h2 {
		font-size: 24px;
	}

	.aviator-section h3 {
		font-size: 18px;
	}

	.aviator-section p,
	.aviator-section li {
		font-size: 15px;
	}
}

/* colour-prediction*/

.prediction-section {
	border: 2px solid red;
	border-radius: 10px;
	padding: 25px;
	margin: 20px auto;
	max-width: 1100px;
	box-shadow: 0 4px 10px rgba(255, 0, 0, 0.1);
}

.prediction-section h2 {
	color: #e53935;
	font-size: 28px;
	margin-bottom: 15px;
}

.prediction-section h3 {
	color: #0f0f0f;
	font-size: 20px;
	margin-top: 25px;
}

.prediction-section p,
.prediction-section li {
	font-size: 17px;
	color: #333;
	line-height: 1.6;
}

.prediction-section ul {
	padding-left: 20px;
}

.faq-item {
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.prediction-section {
		padding: 15px;
	}

	.prediction-section h2 {
		font-size: 24px;
	}

	.prediction-section h3 {
		font-size: 18px;
	}

	.prediction-section p,
	.prediction-section li {
		font-size: 15px;
	}
}

/* teacher */

.teacher-section {
	border: 2px solid red;
	border-radius: 10px;
	max-width: 1100px;
	margin: 20px auto;
	padding: 30px;
	box-shadow: 0 0 10px rgba(255, 0, 0, 0.1);
	margin-bottom: 30px;
}

.teacher-section h1 {
	font-size: 30px;
	margin-bottom: 15px;
	color: #000;
}

.teacher-section h2 {
	font-size: 24px;
	margin-bottom: 15px;
	color: #d32f2f;
}

.teacher-section h3 {
	font-size: 20px;
	margin-top: 25px;
	color: #000;
}

.teacher-section p,
.teacher-section li {
	font-size: 16px;
	line-height: 1.6;
}

.teacher-section ul {
	padding-left: 20px;
}

.faq-item {
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.teacher-section {
		padding: 15px;
	}

	.teacher-section h1 {
		font-size: 24px;
	}

	.teacher-section h2 {
		font-size: 20px;
	}

	.teacher-section h3 {
		font-size: 18px;
	}

	.teacher-section p,
	.teacher-section li {
		font-size: 16px;
	}
}

/* support */

.support-section {
	border: 2px solid red;
	border-radius: 10px;
	max-width: 1100px;
	margin: 20px auto;
	padding: 30px;
	box-shadow: 0 0 10px rgba(255, 0, 0, 0.1);
	margin-bottom: 30px;
}

.support-section h2 {
	color: #d32f2f;
	font-size: 28px;
	margin-bottom: 15px;
}

.support-section h1 {
	color: #161616;
	font-size: 30px;
	margin-bottom: 15px;
}

.support-section h3 {
	color: #161616;
	font-size: 22px;
	margin-top: 25px;
}

.support-section p,
.support-section li {
	font-size: 16px;
	line-height: 1.6;
}

.support-section ul {
	padding-left: 20px;
}

.faq-item {
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.support-section {
		padding: 15px;
	}

	.support-section h2 {
		font-size: 24px;
	}

	.support-section h3 {
		font-size: 18px;
	}

	.support-section p,
	.support-section li {
		font-size: 15px;
	}
}

/* register */
.registerHeader {
	background-color: #000;
	color: #fff;
	text-align: center;
	padding: 30px 20px;
}

h1 {
	margin: 0;
	font-size: 2.5rem;
	letter-spacing: 1px;
	color: #000;
}

.registerContainer {
	width: 100%;
	max-width: 1200px;
	margin: 30px auto;
}

section.registerSection {
	background-color: #fff;
	border: 2px solid #ff8d6d;
	border-radius: 10px;
	padding: 25px 30px;
	margin-bottom: 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

section.registerSection:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

section.registerSection h3 {
	color: #ff8d6d;
	margin-top: 0;
}

section.registerSection h2 {
	color: #ff8d6d;
	margin-top: 0;
}

.registerSection ul {
	padding-left: 20px;
}

.registerSection li {
	margin-bottom: 8px;
}

.registerBtn {
	background-color: #ff8d6d;
	color: #fff;
	padding: 12px 24px;
	font-size: 18px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	display: inline-block;
	margin-top: 20px;
	margin-bottom: 30px;
}

.registerStepImg {
	width: 100%;
	max-width: 500px;
	margin: 15px 0;
	display: block;
	border-radius: 8px;
	border: 1px solid #ccc;
}

@media (max-width: 768px) {
	.registerSection {
		padding: 20px;
	}

	.registerHeader h1 {
		font-size: 2rem;
	}
}

/* lottery */

.lotteryHeader {
	background-color: #000;
	color: #fff;
	text-align: center;
	padding: 30px 20px;
}

h1 {
	font-size: 2.5rem;
	letter-spacing: 1px;
	color: #000;
}

.lotteryContainer {
	width: 100%;
	max-width: 1200px;
	margin: 30px auto;
}

section.lotterySection {
	background-color: #fff;
	border: 2px solid #ff8d6d;
	border-radius: 10px;
	padding: 25px 30px;
	margin-bottom: 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

section.lotterySection:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

section.lotterySection h2 {
	color: #ff8d6d;
	margin-top: 0;
}

section.lotterySection h3 {
	color: #000;
}

.lotterySection ul {
	padding-left: 20px;
}

.lotterySection li {
	margin-bottom: 8px;
}

@media (max-width: 768px) {
	.lotterySection {
		padding: 20px;
	}

	.lotteryHeader h1 {
		font-size: 2rem;
	}
}

/* privacy-policy */
.headerPrivacy {
	background-color: #131212;
	color: #fff;
	padding: 40px;
	text-align: center;
	border-bottom: 5px solid #fff;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
	animation: fadeIn 1s ease-in;
}

.headerPrivacy h1 {
	font-size: 2.5em;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.containerPrivacy {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	color: #000;
}

.sectionPrivacy {
	margin-bottom: 25px;
	border: 2px solid #ff8d6d;
	padding: 20px;
	background-color: #fff;
	color: #000;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	animation: slideUp 0.8s ease-out;
	line-height: 1.6;
}

.sectionPrivacy h2 {
	color: #ff8d6d;
	padding-bottom: 5px;
	font-size: 1.9em;
	transition: color 0.3s;
}

.sectionPrivacy h2:hover {
	color: #ff3333;
}

.buttonPrivacy {
	background-color: #ff8d6d;
	color: #fff;
	padding: 12px 25px;
	text-decoration: none;
	display: inline-block;
	border-radius: 5px;
	font-weight: bold;
	transition: all 0.3s ease;
	animation: bounce 1.5s infinite;
}

.buttonPrivacy:hover {
	background-color: #cc0000;
	transform: translateY(-2px);
}

.contactInfoPrivacy {
	color: #fff;
	padding: 15px;
	text-align: center;
	font-size: 1.1em;
	border-top: 2px solid #ff8d6d;
	animation: fadeIn 1s ease-in 1s backwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-5px);
	}

	60% {
		transform: translateY(-3px);
	}
}

/* term-condition */

.headerTerms {
	background-color: #000;
	color: #fff;
	text-align: center;
	padding: 30px 20px;
}

.headerTerms h1 {
	margin: 0;
	font-size: 2.5rem;
	letter-spacing: 1px;
}

.containerTerms {
	width: 100%;
	max-width: 1200px;
	margin: 30px auto;
}

.sectionTerms {
	background-color: #fff;
	border: 2px solid #ff8d6d;
	border-radius: 10px;
	padding: 25px 30px;
	margin-bottom: 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.sectionTerms:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sectionTerms h2 {
	color: #ff8d6d;
	margin-top: 0;
}

.sectionTerms ul {
	padding-left: 20px;
}

.sectionTerms li {
	margin-bottom: 8px;
}

.contactInfoTerms {
	text-align: center;
	padding: 20px;
	font-weight: bold;
	color: #000;
}

@media (max-width: 768px) {
	.sectionTerms {
		padding: 20px;
	}

	.headerTerms h1 {
		font-size: 2rem;
	}
}

.toc-wrapper {
	width: 100%;
	max-width: 400px;
	margin: 20px auto;
	/* Left aligned */
	font-family: 'Inter', sans-serif;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	border: 1px solid #eee;
	overflow: hidden;
	color: #000;
}

.toc-header {
	font-weight: 800;
	font-size: 17px;
	padding: 20px 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid #f0f0f0;
	user-select: none;
	background: #f9f9f9;
}

.toc-header::before {
	content: '▶';
	font-size: 13px;
	transition: transform 0.3s ease;
}

.toc-header.open::before {
	transform: rotate(90deg);
}

.toc-body {
	display: none;
	padding: 15px 25px 20px;
}

.toc-body ol {
	list-style: decimal;
	margin: 0;
	padding-left: 20px;
}

.toc-body li {
	margin: 10px 0;
	font-size: 15px;
}

.toc-body a {
	color: #ff8d6d;
	text-decoration: none;
	transition: all 0.2s ease;
}

.toc-body a:hover {
	color: #a14931;
	text-decoration: underline;
}

.white {
	color: #fff;
	padding: 20px 0px;
}

.center {
	text-align: center;
}

.btn-group {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
}

.btns {
	padding: 12px 40px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

/* Login Button */
.btn-login {
	border: 2px solid #ff8d6d;
	background: linear-gradient(135deg, #ffffff, #f0f0f0);
	color: #111;
}

.btn-login:hover {
	background: linear-gradient(135deg, #ff8d6d, #e91e63);
	color: #fff;
	box-shadow: 0 8px 20px rgba(255, 59, 59, 0.6);
	transform: translateY(-3px);
}

/* Register Button */
.btn-register {
	background: linear-gradient(135deg, #ff8d6d, #e32a2a);
	color: #fff;
}

.btn-register:hover {
	background: linear-gradient(135deg, #ff6161, #ff8d6d);
	box-shadow: 0 8px 20px rgba(255, 59, 59, 0.6);
	transform: translateY(-3px);
}

/* Download Button */
.btn-download {
	background: linear-gradient(135deg, #e1dbdb, #d51c1c);
	color: #fff;
}

.btn-download:hover {
	background: linear-gradient(135deg, #ff8d6d, #e32a2a);
	box-shadow: 0 8px 20px rgba(255, 59, 59, 0.6);
	transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 600px) {
	.btn-group {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	.btns {
		width: 80%;
	}
}

.red {
	color: red;
}

.container.raja-game {
	margin-top: 45px;

	padding: 30px 50px;

	background-color: #121212;

	border-radius: 12px;
}

.for-bg-style {
	margin: 30px auto;
	background: white;
	padding: 0px 30px 30px;
	border-radius: 15px;
}

.black-clr {
	background-color: #121212;
	padding: 8px 0px;
	border-radius: 10px;
}

table {
	width: 90%;

	margin: 0 auto;
	border-collapse: collapse;
	background: #1a1a1a;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

table th,
table td {
	padding: 15px 20px;
	text-align: left;
	font-size: 15px;
	color: #fff;
	border: 1px solid #ff8d6d;
}

table th {
	background: #ff8d6d;
	/* Red header */
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
}

table tr {
	border-bottom: 1px solid rgb(131 101 99);
}

table tr:last-child {
	border-bottom: none;
}

table td:first-child {
	font-weight: bold;
	color: #ff8d6d;
	/* Highlighted titles */
	width: 40%;
}

/* Hover effect */
table tr:hover {
	background: rgba(255, 59, 59, 0.1);
	transition: 0.3s;
}

/* Responsive */
@media (max-width: 600px) {
	table,
	table thead,
	table tbody,
	table th,
	table td,
	table tr {
		width: 100%;
	}

	section.table-section {
		overflow: auto;
	}

	ol,
	ul {
		list-style: none;
		padding: 0px !important;
	}

	.raja-game-img img {
		max-width: 100%;
		border-radius: 10px;
	}
}

h4 {
	color: #000;
}

.raja-game-img {
	text-align: center;
	margin: 20px 0px;
}

.raja-game-img img {
	max-width: 350px;
	border-radius: 10px;
}

.second table {
	width: 90%;
	max-width: 600px;
}

.container {
	max-width: 1200px !important;
	margin: auto;
	margin-bottom: 30px;
}

.understanding ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.understanding ul li {
	background: #fff;
	border-left: 6px solid #e50914;
	/* Red bar for highlight */
	margin-bottom: 15px;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	transition: 0.3s ease;
}

.understanding ul li:hover {
	background: #000;
	color: #fff;
	transform: translateY(-3px);
}

.understanding ul li strong {
	color: #e50914;
	/* Highlighted red */
	font-weight: bold;
}

.understanding ul li:hover strong {
	color: #fff;
}

.content-block h3 {
	color: #f8f9fa;
	font-size: 1.5rem;
	margin-bottom: 18px;
	text-align: left;
	border-bottom: none;
	padding-bottom: 10px;
	background: #0c0c0c;
	padding: 14px 20px;
	border-radius: 8px;
	border-left: 4px solid #ff7761;
	display: flex;
	align-items: center;
	gap: 10px;
}

.content-block h3:before {
	content: 'ℹ️';
	font-size: 1rem;
	background: #ff7761;
	color: white;
	padding: 8px;
	border-radius: 6px;
	display: inline-block;
}

.payment-table {
	width: 700px;
	border-collapse: collapse;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.payment-table th,
.payment-table td {
	padding: 12px 15px;
	text-align: center;
	border: 1px solid #ddd;
	/* Row & column border */
	color: #000;
}

.payment-table th {
	background: #e50914;
	color: #fff;
	font-size: 16px;
}

.payment-table tr:hover {
	background: #000;
	color: #fff;
	transition: 0.3s ease;
}

.payment-table tr:hover td {
	color: #fff;
}

@media (max-width: 768px) {
	.payment-table {
		max-width: 100%;
	}

	.second table {
		max-width: 100%;
	}

	section.table-section {
		overflow: auto;
	}

	ul {
		list-style: none;
		padding: 0px !important;
	}

	.raja-game-img img {
		max-width: 100%;
		border-radius: 10px;
	}
}

.bonus-table-1 {
	width: 800px;
	border-collapse: collapse;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.bonus-table-1 th,
.bonus-table-1 td {
	padding: 12px 15px;
	text-align: center;
	border: 1px solid #ddd;
	color: #000;
}

.bonus-table-1 th {
	background: #e50914;
	color: #fff;
	font-size: 16px;
}

.bonus-table-1 tr:nth-child(even) {
	background: #f9f9f9;
}

.bonus-table tr:hover {
	background: #000;
	color: #fff;
	transition: 0.3s ease;
}

.bonus-table-1 tr:hover td {
	color: #000;
}

/* Responsive table */
@media (max-width: 768px) {
	.bonus-table-1 {
		width: 100%;
	}

	section.table-section {
		overflow: auto;
	}

	ol,
	ul {
		list-style: none;
		padding: 0px !important;
	}

	.raja-game-img img {
		max-width: 100%;
		border-radius: 10px;
	}
}

.h2head {
	font-size: 26px;
	margin-bottom: 30px;
	color: #fff;
	background: linear-gradient(135deg, #e50914, #000);
	padding: 15px;
	border-radius: 10px;
	display: inline-block;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.review-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px 20px 20px;
	/* top padding increased */
	position: relative;
	text-align: left;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.review-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.review-card::before {
	content: '❝';
	font-size: 40px;
	color: #e50914;
	position: absolute;
	top: 10px;
	left: 15px;
	opacity: 0.3;
	padding-bottom: 15px;
	/* bottom padding for quote icon */
	line-height: 1;
}

.review-author {
	font-weight: bold;
	margin-top: 10px;
	color: #e50914;
}

.review-text {
	font-size: 15px;
	color: #333;
	line-height: 1.6;
	margin-top: 10px;
}

.reviews-footer {
	margin-top: 30px;
	font-size: 16px;
	font-weight: bold;
	color: #222;
}

.reviews-footer span {
	color: #e50914;
}

@media (max-width: 768px) {
	.h2head {
		font-size: 22px;
		padding: 12px 18px;
	}

	.review-text {
		font-size: 14px;
	}

	section.table-section {
		overflow: auto;
	}

	ol,
	ul {
		list-style: none;
		padding: 0px !important;
	}

	.raja-game-img img {
		max-width: 100%;
		border-radius: 10px;
	}
}

.faq-title {
	text-align: center;
	font-size: 28px;
	margin-bottom: 30px;
	color: #fff;
	background: linear-gradient(135deg, #e50914, #000);
	padding: 15px;
	border-radius: 10px;
	display: inline-block;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-item {
	background: #fff;
	border-radius: 10px;
	margin-bottom: 15px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: 0.3s ease;
	padding: 0px 17px;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	outline: none;
	text-align: left;
	padding: 0;
	cursor: pointer;
	position: relative;
	display: block;
}

.faq-question h3 {
	margin: 0;
	padding: 18px 20px;
	font-size: 18px;
	font-weight: bold;
	color: #222;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 22px;
	color: #e50914;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
	content: '−';
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	font-size: 15px;
	color: #444;
	line-height: 1.6;
	background: #fafafa;
	border-top: 1px solid #eee;
	transition:
		max-height 0.4s ease,
		padding 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 15px 20px;
}

@media (max-width: 768px) {
	.faq-title {
		font-size: 22px;
		padding: 12px 18px;
	}

	.faq-question h3 {
		font-size: 16px;
		padding: 15px;
	}
}

.faq-titles {
	color: #fff;
	font-size: 2rem;
	margin-bottom: 20px;
	text-align: left;
	border-bottom: none;
	padding-bottom: 10px;
	background: #0c0c0c;
	padding: 15px 20px;
	border-radius: 8px;
	border-left: 4px solid #ff7761;
	display: flex;
	align-items: center;
	gap: 10px;
}

.faq-titles:before {
	content: 'ℹ️';
	font-size: 1.2rem;
	background: #ff7761;
	color: white;
	padding: 8px;
	border-radius: 6px;
	display: inline-block;
}

.container.for-bg-styles.content-blocks {
	background: white;
	padding: 0px 30px 1px;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

a.logo img {
	border-radius: 9px;
}

.btn-daman {
	display: inline-block;
	background: linear-gradient(90deg, #ff3c00, #ff5722);
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	padding: 12px 28px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 16px;
	letter-spacing: 0.5px;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 4px 12px rgba(255, 60, 0, 0.4);
}

/* Hover effect */
.btn-daman:hover {
	background: linear-gradient(90deg, #ff5722, #ff3c00);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 16px rgba(255, 87, 34, 0.6);
	color: #fff;
	text-decoration: none;
}

.log-reg-down {
	display: flex;
	gap: 20px;
	justify-content: center;
	padding-top: 15px;
}

.log-reg-down a {
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 38px;
	border-radius: 30px;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	overflow: hidden;
	z-index: 1;
}

/* ---------- Border Animation (Visible Outline) ---------- */
.log-reg-down a::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 30px;
	border: 2px solid currentColor;
	box-sizing: border-box;
	clip-path: polygon(
		0 0,
		0 0,
		0 100%,
		0 100%,
		100% 100%,
		100% 100%,
		100% 0,
		100% 0
	);
	transition: clip-path 1s linear;
	z-index: 3;
}

.log-reg-down a:hover::after {
	clip-path: polygon(
		0 0,
		100% 0,
		100% 0,
		100% 100%,
		100% 100%,
		0 100%,
		0 100%,
		0 0
	);
}

/* ---------- Register (Red/Gold) ---------- */
.r-btn {
	color: #fff;
	background: linear-gradient(135deg, #ff9a9e, #ff3d00);
	box-shadow: 0 0 15px rgba(255, 80, 50, 0.5);
}

.r-btn:hover {
	color: #fff;
	background: linear-gradient(135deg, #ff5e00, #e60012);
	transform: translateY(-3px) scale(1.05);
	box-shadow:
		0 0 25px rgba(255, 80, 50, 0.9),
		0 0 50px rgba(200, 0, 0, 0.8);
}

@media (max-width: 768px) {
	.containers {
		padding: 100px 20px 30px 20px;
	}
}
