/* ==========================================================================
   Huroof App - Central Master Stylesheet (style.css)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Root Variables & Typography
   -------------------------------------------------------------------------- */
:root {
	--brand-purple: #76007e;
	--brand-purple-dark: #58005e;
	--brand-purple-light: rgba(118, 0, 126, 0.08);
	--brand-purple-border: rgba(118, 0, 126, 0.18);
	--brand-blue: #0078d7;
	--brand-blue-light: rgba(0, 120, 215, 0.08);
	--team-green: #198754;
	--team-green-light: rgba(25, 135, 84, 0.1);
	--team-red: #dc3545;
	--team-red-light: rgba(220, 53, 69, 0.1);
}

@font-face {
  font-family: 'Tajawal';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Iurf6YBj_oCad4k1l4qkHrRpiYlJ.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

@font-face {
  font-family: 'Tajawal';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Iurf6YBj_oCad4k1l4qkHrFpiQ.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html, body {
	padding: 0px;
	margin: 0px;
	position: relative;
	font-family: 'Tajawal', sans-serif;
	color: #2b2f38;
	background-color: #f8fafc;
	line-height: 1.8;
}

html *, body * {
	font-family: 'Tajawal', sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   2. Header, Navigation & Breadcrumbs
   -------------------------------------------------------------------------- */
header.site-header {
	background-color: white;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #E1E1E1;
	z-index: 1040 !important;
}

#logo {
	width: 100px;
	margin-bottom: 5px;
}

.logo-link img {
    transition: transform 0.3s ease;
}

.logo-link:hover img {
    transform: scale(1.05);
}

#play {
	border: 1px solid #76007e;
	background: #fff;
	color: #76007e;
}

#share {
	border: 1px solid #76007e;
	background: #76007e;
	color: white;
}

.secondary-navigation .nav-link {
	color: #4b5563;
	font-weight: 500;
	transition: all 0.2s ease;
}

.secondary-navigation .nav-link:hover {
	color: var(--brand-purple);
}

.secondary-navigation .nav-link.active {
	color: var(--brand-purple) !important;
	font-weight: 700;
	border-bottom: 2px solid var(--brand-purple);
}

.breadcrumb-item + .breadcrumb-item::before {
	float: right;
	padding-left: 0.5rem;
	color: #94a3b8;
}

/* --------------------------------------------------------------------------
   3. Common Badges, Pills, Buttons & Scroll-to-Top
   -------------------------------------------------------------------------- */
.policy-badge,
.program-badge,
.sitemap-badge,
.reviews-badge,
.contact-badge,
.about-badge,
.activities-badge,
.article-badge,
.articles-badge,
.gallery-badge,
.comments-badge,
.tracking-badge,
.setup-badge,
.subscriptions-badge,
.questions-badge,
.team-badge,
.game-badge,
.hero-badge {
	background: var(--brand-purple-light);
	color: var(--brand-purple);
	border: 1px solid var(--brand-purple-border);
	font-size: 0.9rem;
	font-weight: 700;
	padding: 0.4rem 1rem;
	border-radius: 50rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.stat-pill {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	padding: 0.35rem 0.9rem;
	border-radius: 50rem;
	font-size: 0.85rem;
	color: #64748b;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.scroll-top-btn {
	position: fixed;
	bottom: 25px;
	left: 25px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--brand-purple);
	color: #ffffff;
	border: none;
	box-shadow: 0 6px 16px rgba(118, 0, 126, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	cursor: pointer;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.scroll-top-btn.show {
	opacity: 1;
	visibility: visible;
}

.scroll-top-btn:hover {
	background: var(--brand-purple-dark);
	transform: translateY(-3px);
}

.contact-cta-card {
	background: linear-gradient(135deg, var(--brand-purple) 0%, #9c27b0 100%);
	color: #ffffff;
	border-radius: 1.25rem;
	padding: 2.25rem;
	box-shadow: 0 12px 30px rgba(118, 0, 126, 0.25);
}

.contact-cta-card a.btn-cta {
	background: #ffffff;
	color: var(--brand-purple);
	font-weight: 700;
	border: none;
	border-radius: 50rem;
	padding: 0.75rem 1.75rem;
	transition: all 0.2s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	text-decoration: none;
}

.contact-cta-card a.btn-cta:hover {
	background: #f1f5f9;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	color: var(--brand-purple-dark);
}

/* --------------------------------------------------------------------------
   4. Search Boxes & Filter Controls
   -------------------------------------------------------------------------- */
.search-box-wrapper {
	position: relative;
	margin-bottom: 1.5rem;
}

.search-box-wrapper input {
	padding: 0.75rem 1rem 0.75rem 2.8rem;
	border-radius: 50rem;
	border: 1px solid #cbd5e1;
	font-size: 0.95rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
	transition: all 0.2s ease;
}

.search-box-wrapper input:focus {
	border-color: var(--brand-purple);
	box-shadow: 0 0 0 0.25rem var(--brand-purple-light);
}

.search-box-wrapper i {
	position: absolute;
	left: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   5. Hero Cards, Feature Cards & Table of Contents (TOC)
   -------------------------------------------------------------------------- */
.policy-hero-card,
.disclaimer-hero-card,
.program-hero-card,
.sitemap-hero-card,
.reviews-hero-card,
.contact-hero-card,
.about-hero-card,
.activities-hero-card,
.articles-hero-card,
.gallery-hero-card,
.comments-hero-card,
.tracking-hero-card,
.setup-hero-card,
.subscriptions-hero-card,
.questions-hero-card,
.team-hero-card,
.game-hero-card {
	background: linear-gradient(135deg, #ffffff 0%, #faf5fc 100%);
	border: 1px solid var(--brand-purple-border);
	border-radius: 1.25rem;
	box-shadow: 0 10px 30px rgba(118, 0, 126, 0.05);
}

.feature-highlight-card {
	background: #ffffff;
	border: 1px solid #edf2f7;
	border-radius: 1rem;
	padding: 1.25rem;
	height: 100%;
	transition: all 0.25s ease-in-out;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.feature-highlight-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(118, 0, 126, 0.08);
	border-color: var(--brand-purple-border);
}

.feature-icon-wrapper {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
	font-size: 1.4rem;
}

.feature-icon-purple {
	background-color: var(--brand-purple-light);
	color: var(--brand-purple);
}

.feature-icon-blue {
	background-color: var(--brand-blue-light);
	color: var(--brand-blue);
}

.feature-icon-green {
	background-color: rgba(22, 163, 74, 0.1);
	color: #16a34a;
}

.feature-icon-amber {
	background-color: rgba(217, 119, 6, 0.1);
	color: #d97706;
}

.toc-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.toc-link {
	color: #475569;
	text-decoration: none;
	padding: 0.5rem 0.75rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	transition: all 0.2s ease;
	font-size: 0.95rem;
	font-weight: 500;
}

.toc-link:hover {
	color: var(--brand-purple);
	background-color: var(--brand-purple-light);
	transform: translateX(-4px);
}

/* Policy & Disclaimer Specifics */
.policy-section-card,
.disclaimer-section-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 1.1rem;
	padding: 1.75rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	transition: border-color 0.2s ease;
	scroll-margin-top: 90px;
}

.policy-section-card:hover,
.disclaimer-section-card:hover {
	border-color: #cbd5e1;
}

.section-header-badge {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	background: var(--brand-purple-light);
	color: var(--brand-purple);
	flex-shrink: 0;
}

.policy-list,
.disclaimer-list {
	list-style: none;
	padding-right: 0 !important;
	margin-bottom: 0;
}

.policy-list li,
.disclaimer-list li {
	position: relative;
	padding-right: 1.85rem;
	margin-bottom: 0.85rem;
	color: #475569;
}

.policy-list li::before,
.disclaimer-list li::before {
	content: "\F26E";
	font-family: "bootstrap-icons";
	position: absolute;
	right: 0;
	top: 2px;
	color: var(--brand-purple);
	font-size: 1.05rem;
}

.notice-box {
	background-color: #f8fafc;
	border-right: 4px solid var(--brand-blue);
	border-radius: 0.5rem;
	padding: 1rem 1.25rem;
	margin: 1.25rem 0;
	color: #334155;
}

.notice-box-warning {
	background-color: #fffbeb;
	border-right: 4px solid #f59e0b;
	color: #92400e;
}

.notice-box-purple {
	background-color: #faf5fc;
	border-right: 4px solid var(--brand-purple);
	color: #4a044e;
}

/* --------------------------------------------------------------------------
   6. About Program & Game Guide Specifics
   -------------------------------------------------------------------------- */
.role-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 1.15rem;
	padding: 1.75rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	transition: all 0.25s ease-in-out;
	scroll-margin-top: 90px;
}

.role-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(118, 0, 126, 0.08);
	border-color: #cbd5e1;
}

.role-header-icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	flex-shrink: 0;
}

.icon-host {
	background-color: var(--brand-purple-light);
	color: var(--brand-purple);
}

.icon-players {
	background-color: rgba(13, 110, 253, 0.1);
	color: #0d6efd;
}

.icon-board {
	background-color: rgba(255, 193, 7, 0.15);
	color: #d97706;
}

.step-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
	color: #475569;
}

.step-number {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #f1f5f9;
	color: #475569;
	font-size: 0.85rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.team-badge-green {
	background: var(--team-green-light);
	color: var(--team-green);
	border: 1px solid rgba(25, 135, 84, 0.2);
	padding: 0.3rem 0.75rem;
	border-radius: 0.5rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.team-badge-red {
	background: var(--team-red-light);
	color: var(--team-red);
	border: 1px solid rgba(220, 53, 69, 0.2);
	padding: 0.3rem 0.75rem;
	border-radius: 0.5rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.video-wrapper {
	position: relative;
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid #e2e8f0;
	background: #000000;
}

.video-wrapper video {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 1.25rem;
}

/* --------------------------------------------------------------------------
   7. Sitemap Specifics
   -------------------------------------------------------------------------- */
.category-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 1.15rem;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	transition: all 0.25s ease-in-out;
}

.category-card:hover {
	border-color: #cbd5e1;
	box-shadow: 0 10px 24px rgba(118, 0, 126, 0.06);
}

.category-header-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	flex-shrink: 0;
}

.icon-main {
	background: var(--brand-purple-light);
	color: var(--brand-purple);
}

.icon-content {
	background: rgba(13, 110, 253, 0.1);
	color: #0d6efd;
}

.icon-legal {
	background: rgba(25, 135, 84, 0.1);
	color: #198754;
}

.icon-xml {
	background: rgba(245, 158, 11, 0.12);
	color: #d97706;
}

.sitemap-item-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 1rem;
	border-radius: 0.75rem;
	background-color: #f8fafc;
	border: 1px solid #edf2f7;
	color: #334155;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	margin-bottom: 0.6rem;
}

.sitemap-item-link:hover {
	background-color: var(--brand-purple-light);
	border-color: var(--brand-purple-border);
	color: var(--brand-purple);
	transform: translateX(-4px);
}

.sitemap-item-info {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.sitemap-item-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	color: #64748b;
	border: 1px solid #e2e8f0;
	transition: all 0.2s ease;
}

.sitemap-item-link:hover .sitemap-item-icon {
	background: var(--brand-purple);
	color: #ffffff;
	border-color: var(--brand-purple);
}

.sitemap-item-url {
	font-size: 0.8rem;
	color: #94a3b8;
	direction: ltr;
	text-align: left;
}

/* --------------------------------------------------------------------------
   8. Reviews & Rating Specifics
   -------------------------------------------------------------------------- */
.rating-summary-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 1.25rem;
	padding: 2rem;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.big-score {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--brand-purple);
	line-height: 1;
}

.star-rating {
	color: #f59e0b;
	font-size: 1.15rem;
	display: inline-flex;
	gap: 2px;
}

.rating-bar-wrapper {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
	font-size: 0.85rem;
}

.rating-progress-bar {
	flex-grow: 1;
	height: 8px;
	background-color: #f1f5f9;
	border-radius: 4px;
	overflow: hidden;
}

.rating-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #f59e0b, #fbbf24);
	border-radius: 4px;
	transition: width 0.4s ease;
}

.review-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 1.15rem;
	padding: 1.5rem;
	height: 100%;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
	transition: all 0.25s ease-in-out;
	display: flex;
	flex-direction: column;
}

.review-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(118, 0, 126, 0.08);
	border-color: #cbd5e1;
}

.avatar-circle {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--brand-purple-light) 0%, rgba(118, 0, 126, 0.15) 100%);
	color: var(--brand-purple);
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	border: 2px solid #ffffff;
	box-shadow: 0 2px 8px rgba(118, 0, 126, 0.15);
	flex-shrink: 0;
}

.quote-icon {
	color: #e2e8f0;
	font-size: 1.5rem;
	line-height: 1;
}

/* --------------------------------------------------------------------------
   9. Contact Form & Channel Cards
   -------------------------------------------------------------------------- */
.contact-form-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 1.25rem;
	padding: 2.25rem;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
}

.form-floating > .form-control {
	border-radius: 0.75rem;
	border: 1px solid #cbd5e1;
	background-color: #f8fafc;
	transition: all 0.2s ease;
	padding-top: 1.625rem;
	padding-bottom: 0.625rem;
}

.form-floating > .form-control:focus {
	border-color: var(--brand-purple);
	background-color: #ffffff;
	box-shadow: 0 0 0 0.25rem var(--brand-purple-light);
}

.form-floating > label {
	right: 0;
	left: auto;
	padding: 1rem 1.25rem;
	color: #64748b;
	font-size: 0.95rem;
}

.custom-btn-submit {
	background: linear-gradient(135deg, var(--brand-purple) 0%, #9c27b0 100%);
	color: #ffffff;
	border: none;
	border-radius: 50rem;
	padding: 0.85rem 2.5rem;
	font-size: 1.1rem;
	font-weight: 700;
	box-shadow: 0 6px 18px rgba(118, 0, 126, 0.25);
	transition: all 0.25s ease-in-out;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
}

.custom-btn-submit:hover:not(:disabled) {
	background: linear-gradient(135deg, var(--brand-purple-dark) 0%, var(--brand-purple) 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(118, 0, 126, 0.35);
	color: #ffffff;
}

.custom-btn-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.contact-channel-card {
	background: #ffffff;
	border: 1px solid #edf2f7;
	border-radius: 1.15rem;
	padding: 1.5rem;
	height: 100%;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
	transition: all 0.25s ease;
}

.contact-channel-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(118, 0, 126, 0.08);
	border-color: var(--brand-purple-border);
}

.channel-icon-wrapper {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	margin-bottom: 0.75rem;
}

.icon-email {
	background-color: var(--brand-purple-light);
	color: var(--brand-purple);
}

.icon-insta {
	background-color: rgba(225, 48, 108, 0.1);
	color: #e1306c;
}

.icon-faq {
	background-color: rgba(13, 110, 253, 0.1);
	color: #0d6efd;
}

/* --------------------------------------------------------------------------
   10. About Us Info Rows
   -------------------------------------------------------------------------- */
.content-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 1.25rem;
	padding: 2rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.info-row-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	border-radius: 0.75rem;
	background-color: #f8fafc;
	border: 1px solid #edf2f7;
	margin-bottom: 0.75rem;
	transition: all 0.2s ease;
}

.info-row-item:hover {
	background-color: var(--brand-purple-light);
	border-color: var(--brand-purple-border);
}

.info-label {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: #64748b;
	font-weight: 600;
}

.info-value {
	font-weight: 700;
	color: #1e293b;
}

/* --------------------------------------------------------------------------
   11. Activities & Articles Cards
   -------------------------------------------------------------------------- */
.activity-card,
.article-preview-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
	transition: all 0.25s ease-in-out;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.activity-card:hover,
.article-preview-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(118, 0, 126, 0.1);
	border-color: var(--brand-purple-border);
}

.activity-img-wrapper,
.article-img-wrapper {
	position: relative;
	height: 210px;
	background-color: #f1f5f9;
	overflow: hidden;
}

.activity-img-wrapper img,
.article-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.activity-card:hover .activity-img-wrapper img,
.article-preview-card:hover .article-img-wrapper img {
	transform: scale(1.05);
}

.activity-date-badge,
.article-badge-tag {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(6px);
	color: #ffffff;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.3rem 0.75rem;
	border-radius: 50rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.btn-activity-details,
.btn-read-more {
	color: var(--brand-purple);
	border: 1px solid var(--brand-purple);
	background: transparent;
	border-radius: 50rem;
	padding: 0.45rem 1.25rem;
	font-size: 0.9rem;
	font-weight: 700;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	text-decoration: none;
}

.btn-activity-details:hover,
.btn-read-more:hover {
	background: var(--brand-purple);
	color: #ffffff;
	transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   12. Single Article View
   -------------------------------------------------------------------------- */
.article-container-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 1.25rem;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
	overflow: hidden;
}

.article-hero-header {
	background: linear-gradient(135deg, #ffffff 0%, #faf5fc 100%);
	border-bottom: 1px solid #edf2f7;
	padding: 2.5rem 2rem;
}

.article-featured-image-wrapper {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	background-color: #f1f5f9;
	margin: 1.5rem 0 2rem 0;
}

.article-featured-image-wrapper img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	display: block;
}

.article-body-content {
	font-size: 1.1rem;
	color: #334155;
	line-height: 2;
}

.article-body-content p {
	margin-bottom: 1.5rem;
}

.article-body-content h2,
.article-body-content h3 {
	color: #0f172a;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.article-actions-bar {
	background-color: #f8fafc;
	border: 1px solid #edf2f7;
	border-radius: 1rem;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

/* --------------------------------------------------------------------------
   13. Gallery & Lightbox
   -------------------------------------------------------------------------- */
.gallery-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
	transition: all 0.25s ease-in-out;
	height: 100%;
	display: flex;
	flex-direction: column;
	cursor: pointer;
}

.gallery-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(118, 0, 126, 0.12);
	border-color: var(--brand-purple-border);
}

.gallery-img-wrapper {
	position: relative;
	height: 230px;
	background-color: #f1f5f9;
	overflow: hidden;
}

.gallery-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
	transform: scale(1.06);
}

.gallery-overlay-zoom {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(118, 0, 126, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1.8rem;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.gallery-card:hover .gallery-overlay-zoom {
	opacity: 1;
}

.gallery-date-badge {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(6px);
	color: #ffffff;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.3rem 0.75rem;
	border-radius: 50rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

/* --------------------------------------------------------------------------
   14. Comments & Tracking Admin Tables
   -------------------------------------------------------------------------- */
.comments-table-card,
.tracking-card,
.admin-card {
	border-radius: 1.25rem;
	border: 1px solid #e9ecef;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
	overflow: hidden;
	background: #ffffff;
}

.filter-controls-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 1rem;
	padding: 1.25rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.admin-card-header {
	background: linear-gradient(135deg, #76007e, #4a004f);
	color: white;
	padding: 1.25rem 1.5rem;
	border-bottom: none;
	font-weight: 700;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.table > :not(caption) > * > * {
	padding: 0.9rem 1rem;
	vertical-align: middle;
}

.table thead th {
	font-weight: 700;
	color: #475569;
	background-color: #f8fafc;
	border-bottom: 2px solid #e2e8f0;
	font-size: 0.9rem;
}

.rating-badge {
	background: rgba(245, 158, 11, 0.12);
	color: #d97706;
	border: 1px solid rgba(245, 158, 11, 0.25);
	padding: 0.3rem 0.65rem;
	border-radius: 50rem;
	font-weight: 700;
	font-size: 0.85rem;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
}

.btn-delete {
	color: #dc3545;
	background: rgba(220, 53, 69, 0.08);
	border: 1px solid rgba(220, 53, 69, 0.2);
	border-radius: 50rem;
	padding: 0.35rem 0.85rem;
	transition: all 0.2s ease;
}

.btn-delete:hover {
	background: #dc3545;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(220, 53, 69, 0.25);
}

.user-link {
	color: var(--brand-purple);
	text-decoration: none;
	font-weight: 700;
	transition: color 0.2s;
}

.user-link:hover {
	color: var(--brand-purple-dark);
	text-decoration: underline;
}

.comment-text {
	color: #334155;
	font-size: 0.95rem;
	line-height: 1.6;
}

.date-nav-bar {
	background: #ffffff;
	border-bottom: 2px solid #e2e8f0;
	padding: 1.25rem;
}

.main-table tbody > tr:not(.sub-table-row) {
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.main-table tbody > tr:not(.sub-table-row):hover {
	background-color: #faf5fc;
}

.sub-table-container {
	background-color: #f8fafc;
	padding: 1.25rem;
	border-radius: 0.75rem;
	margin: 0.75rem 1rem;
	border: 1px solid #e2e8f0;
}

.badge-stats {
	min-width: 28px;
	font-size: 0.85rem;
	padding: 0.35rem 0.6rem;
	border-radius: 0.4rem;
}

/* --------------------------------------------------------------------------
   15. Play & Room Setup Specifics
   -------------------------------------------------------------------------- */
.setup-main-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 1.25rem;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
	overflow: hidden;
}

.qr-box-wrapper {
	background: #f8fafc;
	border: 2px dashed #cbd5e1;
	border-radius: 1rem;
	padding: 1.5rem;
	display: inline-block;
	transition: border-color 0.2s;
}

.qr-box-wrapper:hover {
	border-color: var(--brand-purple);
}

.option-group-card {
	background: #f8fafc;
	border: 1px solid #edf2f7;
	border-radius: 1rem;
	padding: 1.25rem;
	margin-bottom: 1.25rem;
}

.link-share-box {
	background: #f8fafc;
	border: 1px solid #edf2f7;
	border-radius: 0.85rem;
	padding: 1rem;
	margin-bottom: 1rem;
}

.link-textarea-custom {
	font-size: 0.85rem;
	direction: ltr;
	text-align: left;
	background-color: #ffffff !important;
	border: 1px solid #cbd5e1;
	border-radius: 0.5rem !important;
	cursor: pointer;
}

.btn-start-game {
	background: linear-gradient(135deg, var(--brand-purple) 0%, #9c27b0 100%);
	color: #ffffff !important;
	font-weight: 700;
	font-size: 1.2rem;
	border: none;
	border-radius: 50rem;
	padding: 0.9rem 2rem;
	box-shadow: 0 6px 20px rgba(118, 0, 126, 0.25);
	transition: all 0.25s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	text-decoration: none;
}

.btn-start-game:hover {
	background: linear-gradient(135deg, var(--brand-purple-dark) 0%, var(--brand-purple) 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(118, 0, 126, 0.35);
}

.btn-copy-custom {
	background: var(--brand-purple);
	color: #ffffff;
	border-color: var(--brand-purple);
	border-radius: 0.5rem !important;
	padding: 0 1.25rem;
	transition: all 0.2s ease;
}

.btn-copy-custom:hover {
	background: var(--brand-purple-dark);
	color: #ffffff;
}

.ai-banner-card {
	background: linear-gradient(135deg, #faf5fc 0%, #ffffff 100%);
	border: 1px solid var(--brand-purple-border);
	border-radius: 1rem;
	padding: 1.5rem;
}

/* --------------------------------------------------------------------------
   16. Home Page (Index) Specifics
   -------------------------------------------------------------------------- */
.main-hero-card {
	background: linear-gradient(135deg, #ffffff 0%, #faf5fc 100%);
	border: 1px solid var(--brand-purple-border);
	border-radius: 1.5rem;
	box-shadow: 0 12px 35px rgba(118, 0, 126, 0.06);
	padding: 3rem 2rem;
}

.hero-img-box {
	position: relative;
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(118, 0, 126, 0.12);
	border: 2px solid rgba(255, 255, 255, 0.8);
	transition: transform 0.4s ease;
}

.hero-img-box:hover {
	transform: translateY(-5px);
}

.btn-cta-primary {
	background: linear-gradient(135deg, var(--brand-purple) 0%, #9c27b0 100%);
	color: #ffffff !important;
	font-weight: 700;
	border: none;
	border-radius: 50rem;
	padding: 0.85rem 2.25rem;
	font-size: 1.15rem;
	box-shadow: 0 6px 20px rgba(118, 0, 126, 0.28);
	transition: all 0.25s ease-in-out;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
}

.btn-cta-primary:hover {
	background: linear-gradient(135deg, var(--brand-purple-dark) 0%, var(--brand-purple) 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(118, 0, 126, 0.38);
}

.btn-cta-outline {
	color: var(--brand-purple) !important;
	background: #ffffff;
	border: 2px solid var(--brand-purple);
	border-radius: 50rem;
	padding: 0.8rem 2rem;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.25s ease-in-out;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
}

.btn-cta-outline:hover {
	background: var(--brand-purple);
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(118, 0, 126, 0.15);
}

.feature-box-card {
	background: #ffffff;
	border: 1px solid #edf2f7;
	border-radius: 1.25rem;
	padding: 2rem 1.5rem;
	height: 100%;
	text-align: center;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
	transition: all 0.25s ease-in-out;
}

.feature-box-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(118, 0, 126, 0.1);
	border-color: var(--brand-purple-border);
	color: inherit;
}

.feature-box-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	margin-bottom: 1.25rem;
}

.icon-bg-events {
	background: rgba(13, 110, 253, 0.1);
	color: #0d6efd;
}

.icon-bg-gallery {
	background: rgba(245, 158, 11, 0.12);
	color: #d97706;
}

.icon-bg-articles {
	background: var(--brand-purple-light);
	color: var(--brand-purple);
}

.icon-bg-rules {
	background: rgba(25, 135, 84, 0.1);
	color: #198754;
}

.step-mini-pill {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 1rem;
	padding: 1.25rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.contact-home-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 1.25rem;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
	overflow: hidden;
}

.contact-item-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.85rem 1rem;
	background: #f8fafc;
	border: 1px solid #edf2f7;
	border-radius: 0.75rem;
	margin-bottom: 0.75rem;
	transition: all 0.2s ease;
}

.contact-item-row:hover {
	background: var(--brand-purple-light);
	border-color: var(--brand-purple-border);
}

.contact-item-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	color: var(--brand-purple);
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
	flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   17. Subscriptions & PayPal Specifics
   -------------------------------------------------------------------------- */
.paypal-title {
	font-size: 38px;
	font-weight: bold;
	color: #3b4043;
}

.paypal-btn {
	border: 2px solid #e2e8f0 !important;
	border-radius: 1rem;
	padding: 0.75rem 1.5rem;
	background-color: #ffffff;
	transition: all 0.25s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 220px;
}

.paypal-btn:hover,
.paypal-btn.active {
	border-color: #0070ba !important;
	background-color: #f0f7ff;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 112, 186, 0.15);
}

.paypal-btn img {
	max-height: 38px;
	width: auto;
}

.subscribe-btn {
	background: linear-gradient(135deg, var(--brand-purple) 0%, #9c27b0 100%);
	color: #fff;
	padding: 12px 28px;
	font-size: 1.15rem;
	font-weight: 700;
	border: none;
	border-radius: 50px;
	transition: all 0.25s ease-in-out;
	box-shadow: 0 6px 18px rgba(118, 0, 126, 0.25);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.subscribe-btn:hover {
	background: linear-gradient(135deg, var(--brand-purple-dark) 0%, #7b1fa2 100%);
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(118, 0, 126, 0.35);
	color: #ffffff;
}

/* Enhanced Pricing Plan Cards */
.pricing-plan-card {
	background: #ffffff;
	border: 2px solid #e9ecef;
	border-radius: 1.5rem;
	padding: 2rem 1.5rem;
	position: relative;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.pricing-plan-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 36px rgba(118, 0, 126, 0.12);
	border-color: var(--brand-purple-border);
}

.pricing-plan-card.popular {
	border-color: var(--brand-purple);
	background: linear-gradient(180deg, #ffffff 0%, #fdf9ff 100%);
	box-shadow: 0 12px 32px rgba(118, 0, 126, 0.12);
}

.pricing-plan-card.popular::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, var(--brand-purple) 0%, #0078d7 100%);
	border-top-left-radius: 1.5rem;
	border-top-right-radius: 1.5rem;
}

.pricing-badge-ribbon {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--brand-purple) 0%, #9c27b0 100%);
	color: #ffffff;
	font-size: 0.8rem;
	font-weight: 800;
	padding: 0.35rem 1.15rem;
	border-radius: 50rem;
	box-shadow: 0 4px 12px rgba(118, 0, 126, 0.3);
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	z-index: 2;
}

.pricing-badge-value {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.pricing-plan-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	margin-bottom: 1rem;
	background: var(--brand-purple-light);
	color: var(--brand-purple);
}

.pricing-plan-card.popular .pricing-plan-icon {
	background: linear-gradient(135deg, var(--brand-purple) 0%, #9c27b0 100%);
	color: #ffffff;
	box-shadow: 0 6px 16px rgba(118, 0, 126, 0.25);
}

.pricing-amount {
	font-size: 2.75rem;
	font-weight: 800;
	line-height: 1;
	color: #1e293b;
	font-feature-settings: "tnum";
}

.pricing-currency {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--brand-purple);
	vertical-align: top;
	margin-left: 0.2rem;
}

.pricing-period-pill {
	display: inline-block;
	background: #f1f5f9;
	color: #64748b;
	font-size: 0.82rem;
	font-weight: 600;
	padding: 0.25rem 0.75rem;
	border-radius: 50rem;
	margin-top: 0.5rem;
}

.pricing-features-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
	text-align: right;
}

.pricing-features-list li {
	padding: 0.6rem 0;
	display: flex;
	align-items: center;
	gap: 0.65rem;
	color: #475569;
	font-size: 0.92rem;
	border-bottom: 1px dashed #f1f5f9;
}

.pricing-features-list li:last-child {
	border-bottom: none;
}

.pricing-features-list li i.bi-check-circle-fill {
	color: #10b981;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.pricing-cta-btn {
	border-radius: 50rem;
	padding: 0.75rem 1.5rem;
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.25s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.pricing-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(118, 0, 126, 0.2);
}

/* Feature comparison table */
.comparison-table-wrapper {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.comparison-table th,
.comparison-table td {
	padding: 1rem 1.25rem;
	vertical-align: middle;
}

.comparison-table thead th {
	background: #f8fafc;
	font-weight: 700;
	border-bottom: 2px solid #e2e8f0;
}

.comparison-table tbody tr:hover {
	background-color: #faf7fd;
}

/* Trust Bar */
.trust-badge-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.25rem;
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 1rem;
	transition: all 0.2s ease;
}

.trust-badge-item:hover {
	border-color: var(--brand-purple-border);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.trust-badge-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--brand-purple-light);
	color: var(--brand-purple);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	flex-shrink: 0;
}

/* Payment Method Selection Card */
.payment-method-card {
	border: 2px solid #e2e8f0;
	border-radius: 1rem;
	padding: 1.25rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
	background: #ffffff;
}

.payment-method-card:hover,
.payment-method-card.selected {
	border-color: var(--brand-purple);
	background: #faf5fc;
	box-shadow: 0 6px 18px rgba(118, 0, 126, 0.1);
}

/* --------------------------------------------------------------------------
   18. Questions Manager Specifics
   -------------------------------------------------------------------------- */
.questions-main-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 1.5rem;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
	overflow: hidden;
}

.questions-stats-bar {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 1rem;
	padding: 1rem 1.25rem;
}

.question-table-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 1.25rem;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
	overflow: hidden;
}

.question-table-card .card-header {
	background: linear-gradient(135deg, var(--brand-purple) 0%, #9c27b0 100%);
	color: #ffffff;
	padding: 1rem 1.5rem;
	border-bottom: none;
	font-weight: 700;
}

.question-table-card .table th {
	background-color: #f8fafc;
	font-weight: 700;
	color: #475569;
	font-size: 0.88rem;
	border-bottom: 2px solid #e2e8f0;
}

.question-table-card .table tr {
	transition: background-color 0.15s ease;
}

.question-table-card .table tbody tr:hover {
	background-color: #faf5fc;
}

.question-table-card .table tr.is-selected {
	background-color: #f3e8ff !important;
}

.letter-circle-badge {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--brand-purple-light);
	color: var(--brand-purple);
	font-weight: 800;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--brand-purple-border);
}

.questions-nav-tabs {
	border-bottom: 2px solid #e2e8f0;
	gap: 0.5rem;
}

.questions-nav-tabs .nav-link {
	border: none;
	border-bottom: 3px solid transparent;
	color: #64748b;
	font-weight: 700;
	padding: 0.85rem 1.25rem;
	border-radius: 0.5rem 0.5rem 0 0;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.questions-nav-tabs .nav-link:hover {
	color: var(--brand-purple);
	background-color: var(--brand-purple-light);
}

.questions-nav-tabs .nav-link.active {
	color: var(--brand-purple);
	border-bottom-color: var(--brand-purple);
	background-color: transparent;
}

.question-action-btn {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.2s ease;
}

.question-action-btn:hover {
	transform: scale(1.1);
}

.ai-generate-card,
.upload-box-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 1.25rem;
	padding: 1.75rem;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.sub-link-alert-box {
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
	border: 1px solid #86efac;
	border-radius: 1.25rem;
	padding: 1.5rem;
	box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08);
}

/* --------------------------------------------------------------------------
   19. Team Selection Specifics
   -------------------------------------------------------------------------- */
.team-select-card {
	border-radius: 1.25rem;
	border: 2px solid #e9ecef;
	padding: 1.75rem 1.25rem;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	background: #ffffff;
	cursor: pointer;
	position: relative;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.team-select-card:hover {
	transform: translateY(-4px);
}

.team-select-card.team-red-card:hover {
	border-color: var(--team-red);
	background-color: #fff8f8;
	box-shadow: 0 10px 24px rgba(220, 53, 69, 0.15);
}

.team-select-card.team-green-card:hover {
	border-color: var(--team-green);
	background-color: #f6fcf8;
	box-shadow: 0 10px 24px rgba(25, 135, 84, 0.15);
}

.btn-check:checked + .team-select-card.team-red-card {
	border-color: var(--team-red);
	background: linear-gradient(180deg, #ffffff 0%, #fff1f2 100%);
	box-shadow: 0 10px 28px rgba(220, 53, 69, 0.22);
}

.btn-check:checked + .team-select-card.team-green-card {
	border-color: var(--team-green);
	background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
	box-shadow: 0 10px 28px rgba(25, 135, 84, 0.22);
}

.team-avatar-circle {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	transition: all 0.2s ease;
}

.team-red-card .team-avatar-circle {
	background-color: var(--team-red-light);
	color: var(--team-red);
}

.btn-check:checked + .team-red-card .team-avatar-circle {
	background-color: var(--team-red);
	color: #ffffff;
	box-shadow: 0 6px 16px rgba(220, 53, 69, 0.3);
}

.team-green-card .team-avatar-circle {
	background-color: var(--team-green-light);
	color: var(--team-green);
}

.btn-check:checked + .team-green-card .team-avatar-circle {
	background-color: var(--team-green);
	color: #ffffff;
	box-shadow: 0 6px 16px rgba(25, 135, 84, 0.3);
}

.team-status-indicator {
	position: absolute;
	top: 12px;
	left: 12px;
	opacity: 0;
	transition: opacity 0.2s ease;
	font-size: 1.25rem;
}

.btn-check:checked + .team-select-card .team-status-indicator {
	opacity: 1;
}

.team-input-highlight {
	transition: all 0.2s ease;
	font-weight: 600;
}

.team-input-highlight.red {
	border-color: var(--team-red);
	box-shadow: 0 0 0 0.25rem var(--team-red-light);
}

.team-input-highlight.green {
	border-color: var(--team-green);
	box-shadow: 0 0 0 0.25rem var(--team-green-light);
}

.game-info-badge-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 1rem;
	padding: 1rem;
}

/* --------------------------------------------------------------------------
   20. Game Dashboard & Arena Specifics
   -------------------------------------------------------------------------- */
.game-arena-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 1.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	overflow: hidden;
}

.game-stat-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 1.25rem;
	padding: 1.25rem;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
	transition: all 0.25s ease;
}

.game-stat-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.game-stat-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
}

.team-members-list-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.team-members-list-card .card-header {
	padding: 0.9rem 1.25rem;
	font-weight: 700;
	border-bottom: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.team-members-list-card .card-header.green-team {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
}

.team-members-list-card .card-header.red-team {
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	color: #ffffff;
}

.question-box-live {
	background: linear-gradient(135deg, #ffffff 0%, #fbf9fd 100%);
	border: 2px solid var(--brand-purple-border);
	border-radius: 1.25rem;
	box-shadow: 0 8px 24px rgba(118, 0, 126, 0.06);
}

.question-meta-badge {
	background: var(--brand-purple-light);
	color: var(--brand-purple);
	border: 1px solid var(--brand-purple-border);
	font-weight: 700;
	padding: 0.35rem 0.85rem;
	border-radius: 50rem;
	font-size: 0.85rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

/* --------------------------------------------------------------------------
   21. Modals, Alerts & Utilities
   -------------------------------------------------------------------------- */
.modal-content {
	border-radius: 1.25rem;
	border: none;
	overflow: hidden;
}

.modal-header {
	background: linear-gradient(135deg, var(--brand-purple) 0%, #9c27b0 100%);
	color: #ffffff;
	border-bottom: none;
	padding: 1.25rem 1.75rem;
}

.modal-title {
	font-weight: 700;
}

.btn-close {
	filter: invert(1) grayscale(100%) brightness(200%);
}

.my-10 {
	margin-top: 10rem !important;
	margin-bottom: 10rem !important;
}

.more {
	background: #76007e;
	border-radius: 5px;
	cursor: pointer;
	padding: 10px;
	color: white;
	display: inline-block;
	text-decoration: none;
	border: 0px;
}

.red {
    color: #e53e3e;
}

.green {
    color: #38a169;
}

input.green {
    border-color: #38a169;
    color: #38a169;
    font-weight: bold;
}

input.red {
    border-color: #e53e3e;
    color: #e53e3e;
    font-weight: bold;
}

.btn-group {
    direction: ltr;
    width: 100%;
}

.input-group{
	direction:ltr;
}