:root {
    --primary-color: #FFB800;
    --secondary-color: #8A2BE2;
    --accent-color: #00F0FF;
    --default-bg: #090514;
    --card-bg: #150D2A;
    --section-bg-alt: #0E081F;
    --overlay-bg: rgba(9, 5, 20, 0.85);

    --text-primary: #F3E8FF;
    --text-secondary: #B5A9C2;
    --text-muted-color: #7D728D;

    --border-subtle: rgba(255, 184, 0, 0.15);
    --border-active: rgba(255, 184, 0, 0.4);

    --hero-gradient: linear-gradient(135deg, #090514 0%, #1A0B2E 50%, #090514 100%);
    --accent-gradient: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    --magic-glow: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(9, 5, 20, 0) 70%);

    --heading-font: 'Cinzel', serif;
    --body-font: 'Plus Jakarta Sans', sans-serif;
}

body.alindor-dark-theme {
    background-color: var(--default-bg);
    color: var(--text-primary);
    font-family: var(--body-font);
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

.text-muted {
    color: var(--text-muted-color) !important;
}

.alindor-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.alindor-btn-primary {
    background: var(--accent-gradient);
    color: #090514;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-block;
}

.alindor-btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(255, 184, 0, 0.6);
    color: #090514;
}

.alindor-btn-secondary {
    background: transparent;
    color: #F3E8FF;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    padding: 10px 28px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-block;
}

.alindor-btn-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--accent-color);
    color: #ffffff;
}

.alindor-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.alindor-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--border-active);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(138, 43, 226, 0.15);
}

/* ===== header ===== */
.alindornow-header {
    background-color: #150D2A;
    border-bottom: 2px solid rgba(255, 184, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    direction: rtl;
}

.alindornow-header.scrolled {
    background-color: #090514;
    border-bottom-color: rgba(255, 184, 0, 0.4);
}

.alindornow-header .brand-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
    margin-left: 12px;
}

.alindornow-header .brand-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #FFB800;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
}

.alindornow-header .navbar-toggler {
    border: 1px solid rgba(255, 184, 0, 0.3);
    color: #FFB800;
    font-size: 1.75rem;
    padding: 4px 8px;
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.alindornow-header .navbar-toggler:focus {
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
    outline: none;
}

.alindornow-header .nav-link {
    color: #B5A9C2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.alindornow-header .nav-link:hover,
.alindornow-header .nav-link.active {
    color: #FFB800;
}

.alindornow-header .btn-nav-cta {
    display: inline-block;
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: #090514;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.alindornow-header .btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.5);
    color: #090514;
}

@media (max-width: 991.98px) {
    .alindornow-header .navbar-collapse {
        background-color: #150D2A;
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
        border: 1px solid rgba(255, 184, 0, 0.15);
    }

    .alindornow-header .nav-cta-wrapper {
        margin-top: 15px;
        text-align: center;
    }
}

/* ===== hero ===== */
.aladin-hero {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #090514;
}

.aladin-hero .aladin-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 5, 20, 0.95) 0%, rgba(26, 11, 46, 0.9) 50%, rgba(9, 5, 20, 0.95) 100%);
    z-index: 1;
}

.aladin-hero .aladin-hero-content-wrapper {
    z-index: 2;
}

.aladin-hero .aladin-hero-badge {
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(255, 184, 0, 0.3);
    color: #FFB800;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.aladin-hero .aladin-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #F3E8FF;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.aladin-hero .aladin-hero-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #B5A9C2;
}

.aladin-hero .aladin-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: #090514;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.aladin-hero .aladin-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 184, 0, 0.6);
    color: #090514;
}

.aladin-hero .aladin-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #F3E8FF;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #8A2BE2;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aladin-hero .aladin-btn-secondary:hover {
    background: #8A2BE2;
    color: #F3E8FF;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
    border-color: #8A2BE2;
}

.aladin-hero .aladin-hero-preview-container {
    position: relative;
    border-radius: 16px;
    padding: 10px;
    background: rgba(21, 13, 42, 0.6);
    border: 1px solid rgba(255, 184, 0, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aladin-hero .aladin-hero-preview-container:hover {
    transform: scale(1.02);
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(138, 43, 226, 0.3);
}

.aladin-hero .aladin-hero-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(9, 5, 20, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.aladin-hero .aladin-hero-preview-link {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.aladin-hero .aladin-hero-preview-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.aladin-hero .aladin-hero-preview-link:hover .aladin-hero-preview-img {
    transform: scale(1.05);
}

.aladin-hero .aladin-hero-preview-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #090514;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.6);
    transition: all 0.3s ease;
}

.aladin-hero .aladin-hero-preview-link:hover .aladin-hero-preview-play {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(255, 184, 0, 0.8);
}

@media (max-width: 767.98px) {
    .aladin-hero {
        padding: 80px 0;
    }

    .aladin-hero .aladin-hero-title {
        font-size: 18px !important;
    }

    .aladin-hero .aladin-hero-badge {
        font-size: 12px;
    }

    .aladin-hero .aladin-hero-description {
        font-size: 14px !important;
        line-height: 1.6;
    }
}

/* ===== characters-grid ===== */
.characters-grid-section {
    background-color: #090514;
    color: #F3E8FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    direction: rtl;
    padding: 80px 0;
    position: relative;
}

.characters-grid-section .badge-magic {
    display: inline-block;
    background: rgba(138, 43, 226, 0.2);
    color: #FFB800;
    border: 1px solid rgba(255, 184, 0, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.characters-grid-section .section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFB800;
    margin-bottom: 12px;
}

.characters-grid-section .section-desc {
    color: #B5A9C2;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.characters-grid-section .btn-filter {
    background: transparent;
    border: 2px solid #8A2BE2;
    color: #F3E8FF;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.characters-grid-section .btn-filter:hover,
.characters-grid-section .btn-filter.active {
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    border-color: transparent;
    color: #090514;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
}

.characters-grid-section .char-card {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.characters-grid-section .char-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(138, 43, 226, 0.15);
}

.characters-grid-section .char-img-wrapper {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.characters-grid-section .char-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.characters-grid-section .char-card:hover .char-img {
    transform: scale(1.1);
}

.characters-grid-section .char-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(9, 5, 20, 0.85);
    border: 1px solid #00F0FF;
    color: #00F0FF;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.characters-grid-section .char-title-link {
    text-decoration: none;
    display: inline-block;
}

.characters-grid-section .char-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #FFB800;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.characters-grid-section .char-title-link:hover .char-title {
    color: #00F0FF;
}

.characters-grid-section .char-intro {
    color: #B5A9C2;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.characters-grid-section .btn-char-action {
    display: block;
    background: transparent;
    border: 2px solid #8A2BE2;
    color: #F3E8FF;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.characters-grid-section .btn-char-action:hover {
    background: #8A2BE2;
    border-color: #8A2BE2;
    color: #F3E8FF;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

@media (max-width: 768px) {
    .characters-grid-section {
        padding: 60px 0;
    }

    .characters-grid-section .section-title {
        font-size: 1.8rem;
    }

    .characters-grid-section .section-desc {
        font-size: 1rem;
    }
}

/* ===== gameplay-grid ===== */
.gameplay-grid-section {
    background-color: #090514;
    background-image: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.15) 0%, rgba(9, 5, 20, 0) 80%);
    color: #F3E8FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    direction: rtl;
    text-align: right;
    padding: 80px 0;
}

.gameplay-grid-section .gameplay-badge {
    background-color: rgba(138, 43, 226, 0.2);
    color: #FFB800;
    border: 1px solid rgba(255, 184, 0, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.gameplay-grid-section .gameplay-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.gameplay-grid-section .gameplay-subtitle {
    color: #B5A9C2;
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.gameplay-grid-section .btn-filter {
    background-color: #150D2A;
    color: #F3E8FF;
    border: 1px solid rgba(255, 184, 0, 0.15);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gameplay-grid-section .btn-filter:hover,
.gameplay-grid-section .btn-filter.active {
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: #090514;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
}

.gameplay-grid-section .gameplay-card {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gameplay-grid-section .gameplay-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(138, 43, 226, 0.25);
}

.gameplay-grid-section .gameplay-card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
}

.gameplay-grid-section .gameplay-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gameplay-grid-section .gameplay-card:hover .gameplay-card-img {
    transform: scale(1.08);
}

.gameplay-grid-section .gameplay-card-title a {
    color: #F3E8FF;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.gameplay-grid-section .gameplay-card-title a:hover {
    color: #FFB800;
}

.gameplay-grid-section .gameplay-card-text {
    color: #B5A9C2;
    font-size: 0.95rem;
    line-height: 1.6;
}

.gameplay-grid-section .btn-card-action {
    background-color: transparent;
    border: 2px solid #8A2BE2;
    color: #F3E8FF;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.gameplay-grid-section .btn-card-action:hover {
    background-color: #8A2BE2;
    border-color: #8A2BE2;
    color: #F3E8FF;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

@media (max-width: 767.98px) {
    .gameplay-grid-section {
        padding: 60px 0;
    }

    .gameplay-grid-section .gameplay-title {
        font-size: 1.6rem;
    }

    .gameplay-grid-section .gameplay-subtitle {
        font-size: 1rem;
    }
}

/* ===== reviews ===== */
.alindor-reviews-section {
    background-color: #0E081F;
    padding: 80px 0;
    color: #F3E8FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.alindor-reviews-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(9, 5, 20, 0) 70%);
    pointer-events: none;
}

.alindor-reviews-section .section-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.alindor-reviews-section .section-subtitle {
    color: #B5A9C2;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.alindor-reviews-section .summary-card {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.alindor-reviews-section .summary-rating-number {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 900;
    color: #FFB800;
    line-height: 1;
}

.alindor-reviews-section .summary-stars {
    color: #FFB800;
    font-size: 1.5rem;
    margin: 1rem 0;
}

.alindor-reviews-section .summary-text {
    color: #B5A9C2;
    font-size: 0.95rem;
}

.alindor-reviews-section .rating-bars {
    margin-top: 1.5rem;
}

.alindor-reviews-section .rating-bar-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 10px;
}

.alindor-reviews-section .rating-label {
    color: #B5A9C2;
    font-size: 0.85rem;
    width: 60px;
    text-align: right;
}

.alindor-reviews-section .progress {
    flex-grow: 1;
    background-color: #090514;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.alindor-reviews-section .progress-bar {
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
}

.alindor-reviews-section .rating-count {
    color: #7D728D;
    font-size: 0.85rem;
    width: 35px;
    text-align: left;
}

.alindor-reviews-section .filter-btn {
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    border: 2px solid #8A2BE2;
    background: transparent;
    color: #F3E8FF;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.alindor-reviews-section .filter-btn:hover {
    background: #8A2BE2;
    color: #F3E8FF;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.alindor-reviews-section .filter-btn.active {
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    border-color: transparent;
    color: #090514;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
}

.alindor-reviews-section .review-card {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.alindor-reviews-section .review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.15);
}

.alindor-reviews-section .review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 10px;
}

.alindor-reviews-section .reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.alindor-reviews-section .reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #8A2BE2;
    object-fit: cover;
}

.alindor-reviews-section .reviewer-name {
    font-weight: 600;
    color: #F3E8FF;
    margin: 0;
    font-size: 1.1rem;
}

.alindor-reviews-section .play-hours {
    font-size: 0.85rem;
    color: #FFB800;
    background: rgba(255, 184, 0, 0.1);
    padding: 2px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.alindor-reviews-section .review-stars {
    color: #FFB800;
}

.alindor-reviews-section .review-body {
    color: #B5A9C2;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.alindor-reviews-section .review-date {
    color: #7D728D;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .alindor-reviews-section {
        padding: 60px 0;
    }

    .alindor-reviews-section .section-title {
        font-size: 16px;
    }

    .alindor-reviews-section .reviewer-name {
        font-size: 14px;
    }

    .alindor-reviews-section .section-subtitle {
        font-size: 13px;
    }
}

/* ===== calendar ===== */
.aladin-calendar-section {
    background-color: #090514;
    color: #F3E8FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    direction: rtl;
    text-align: right;
    position: relative;
    overflow: hidden;
}

.aladin-calendar-section .section-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-weight: 700;
}

.aladin-calendar-section .section-subtitle {
    color: #B5A9C2;
}

.aladin-calendar-section .bg-purple-transparent {
    background-color: rgba(138, 43, 226, 0.2);
}

.aladin-calendar-section .text-accent {
    color: #00F0FF !important;
}

.aladin-calendar-section .text-light-primary {
    color: #F3E8FF !important;
}

.aladin-calendar-section .text-light-secondary {
    color: #B5A9C2 !important;
}

.aladin-calendar-section .text-light-muted {
    color: #7D728D !important;
}

.aladin-calendar-section .border-top-subtle {
    border-top: 1px solid rgba(255, 184, 0, 0.15);
}

.aladin-calendar-section .btn-filter {
    border-radius: 50px;
    background: transparent;
    border: 2px solid #8A2BE2;
    color: #F3E8FF;
    padding: 8px 24px;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aladin-calendar-section .btn-filter:hover,
.aladin-calendar-section .btn-filter.active {
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    border-color: #FFB800;
    color: #090514;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
}

.aladin-calendar-section .event-card {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.aladin-calendar-section .event-card:hover {
    transform: translateY(-5px) scale(1.02);
    background-color: #1D123B;
    border-color: #FFB800;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 184, 0, 0.15);
}

.aladin-calendar-section .event-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 600;
}

.aladin-calendar-section .badge-weekly {
    background-color: rgba(138, 43, 226, 0.2);
    color: #8A2BE2;
    border: 1px solid rgba(138, 43, 226, 0.4);
}

.aladin-calendar-section .badge-special {
    background-color: rgba(0, 240, 255, 0.15);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.aladin-calendar-section .badge-daily {
    background-color: rgba(255, 184, 0, 0.15);
    color: #FFB800;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.aladin-calendar-section .event-date {
    font-size: 0.85rem;
    color: #7D728D;
    display: flex;
    align-items: center;
    gap: 4px;
}

.aladin-calendar-section .event-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.aladin-calendar-section .event-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

.aladin-calendar-section .reward-name {
    color: #FFB800;
}

/* ===== changelog ===== */
.aladin-changelog {
    background-color: #090514;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.aladin-changelog::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(9, 5, 20, 0) 70%);
    pointer-events: none;
}

.aladin-changelog .section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFB800 !important;
}

.aladin-changelog .section-desc {
    color: #B5A9C2 !important;
    font-size: 1.1rem;
}

.aladin-changelog .bg-purple-trans {
    background-color: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.aladin-changelog .bg-gold-trans {
    background-color: rgba(255, 184, 0, 0.15);
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.aladin-changelog .text-gold {
    color: #FFB800 !important;
}

.aladin-changelog .text-light-custom {
    color: #F3E8FF !important;
}

.aladin-changelog .text-cyan-custom {
    color: #00F0FF !important;
}

.aladin-changelog .text-muted-custom {
    color: #7D728D !important;
}

.aladin-changelog .btn-filter {
    background: rgba(21, 13, 42, 0.6);
    border: 1px solid rgba(255, 184, 0, 0.15);
    color: #B5A9C2;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.aladin-changelog .btn-filter:hover,
.aladin-changelog .btn-filter.active {
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: #090514 !important;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.aladin-changelog .timeline-container {
    position: relative;
    border-right: 3px solid rgba(255, 184, 0, 0.2);
    margin-right: 20px;
    padding-right: 30px;
}

.aladin-changelog .timeline-item {
    position: relative;
    margin-bottom: 40px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.aladin-changelog .timeline-item:last-child {
    margin-bottom: 0;
}

.aladin-changelog .timeline-badge {
    position: absolute;
    right: -46px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #150D2A;
    border: 2px solid #FFB800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB800;
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
}

.aladin-changelog .timeline-badge.balance {
    border-color: #8A2BE2;
    color: #8A2BE2;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.aladin-changelog .timeline-badge.fix {
    border-color: #00F0FF;
    color: #00F0FF;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.aladin-changelog .timeline-content {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.aladin-changelog .timeline-item:hover .timeline-content {
    transform: translateY(-3px);
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.15);
}

.aladin-changelog .change-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aladin-changelog .change-list li {
    color: #B5A9C2;
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.aladin-changelog .change-list li:last-child {
    margin-bottom: 0;
}

.aladin-changelog .change-list li i {
    margin-top: 4px;
    margin-left: 8px;
    font-size: 1.1rem;
}

@media (max-width: 767.98px) {
    .aladin-changelog .section-title {
        font-size: 1.8rem;
    }

    .aladin-changelog .timeline-container {
        border-right: 2px solid rgba(255, 184, 0, 0.2);
        margin-right: 15px;
        padding-right: 20px;
    }

    .aladin-changelog .timeline-badge {
        right: -31px;
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }

    .aladin-changelog .timeline-content {
        padding: 16px;
    }

    .aladin-changelog .change-list li {
        font-size: 0.9rem;
    }
}

/* ===== footer ===== */
.alindor-footer {
    background-color: #090514;
    color: #F3E8FF;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 184, 0, 0.15);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.alindor-footer .footer-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.alindor-footer .footer-desc {
    color: #B5A9C2;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.alindor-footer .footer-links li {
    margin-bottom: 0.75rem;
}

.alindor-footer .footer-links a {
    color: #B5A9C2;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.alindor-footer .footer-links a:hover {
    color: #00F0FF;
}

.alindor-footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.alindor-footer .contact-item i {
    color: #FFB800;
    font-size: 1.3rem;
    margin-top: 3px;
}

.alindor-footer .contact-label {
    display: block;
    color: #F3E8FF;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.alindor-footer .contact-value {
    color: #B5A9C2;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.alindor-footer .contact-item a.contact-value:hover {
    color: #00F0FF;
}

.alindor-footer .map-container {
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
}

.alindor-footer .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.alindor-footer .footer-bottom {
    border-top: 1px solid rgba(125, 114, 141, 0.2);
    margin-top: 50px;
    padding-top: 25px;
}

.alindor-footer .footer-copyright {
    color: #7D728D;
    font-size: 0.9rem;
}

.alindor-footer .footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.alindor-footer .footer-bottom-links a {
    color: #7D728D;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.alindor-footer .footer-bottom-links a:hover {
    color: #FFB800;
}

/* ===== PAGE: characters ===== */
.alindornow-char-section {
  background-color: #090514;
  background-image: radial-gradient(circle at 50% 0%, rgba(138, 43, 226, 0.15) 0%, rgba(9, 5, 20, 0) 70%);
  color: #F3E8FF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  direction: rtl;
  text-align: right;
}

.alindornow-char-filter-wrapper {
  background-color: #150D2A;
  border: 1px solid rgba(255, 184, 0, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.alindornow-char-section .form-control {
  background-color: #090514 !important;
  border-color: rgba(255, 184, 0, 0.3) !important;
  color: #F3E8FF !important;
}

.alindornow-char-section .form-control:focus {
  border-color: #FFB800 !important;
  box-shadow: 0 0 10px rgba(255, 184, 0, 0.2);
}

.alindornow-char-section .form-control::placeholder {
  color: #7D728D;
  opacity: 1;
}

.alindornow-char-card {
  background-color: #150D2A;
  border: 1px solid rgba(255, 184, 0, 0.15) !important;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.alindornow-char-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 184, 0, 0.4) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(138, 43, 226, 0.15);
}

.alindornow-char-img-container {
  height: 280px;
  background-color: #0E081F;
}

.alindornow-char-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.alindornow-char-card:hover .alindornow-char-img {
  transform: scale(1.08);
}

.alindornow-char-badge {
  background-color: rgba(138, 43, 226, 0.85);
  color: #F3E8FF;
  border: 1px solid rgba(255, 184, 0, 0.3);
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 20px;
  left: auto;
  right: 15px;
}

.alindornow-char-section .text-secondary-custom {
  color: #B5A9C2;
}

.alindornow-char-section .font-cinzel {
  font-family: 'Cinzel', serif;
  font-weight: 700;
}

.alindornow-char-section .btn-warning {
  background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
  border: none;
  color: #090514;
  font-weight: 600;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.3);
}

.alindornow-char-section .btn-warning:hover {
  background: linear-gradient(90deg, #FF8A00 0%, #FFB800 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 184, 0, 0.5);
  color: #090514;
}

.alindornow-char-section .btn-outline-warning {
  background: transparent;
  border: 2px solid #8A2BE2;
  color: #F3E8FF;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.alindornow-char-section .btn-outline-warning:hover,
.alindornow-char-section .btn-outline-warning.active {
  background-color: #8A2BE2;
  border-color: #00F0FF;
  color: #F3E8FF;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.alindornow-char-stats .progress {
  background-color: #090514;
}

.alindornow-char-stats .progress-bar {
  background-color: #FFB800;
}

/* ===== PAGE: gameplay ===== */
.gameplay-section {
  background-color: #090514;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #F3E8FF;
  padding: 80px 0;
  position: relative;
}
.gameplay-section .section-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #FFB800;
  font-size: 2.2rem;
}
.gameplay-section .section-subtitle {
  color: #B5A9C2;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.gameplay-section .search-box-wrapper .search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFB800;
  font-size: 1.5rem;
}
.gameplay-section .search-box-wrapper input {
  background-color: #150D2A;
  border: 1px solid rgba(255, 184, 0, 0.15);
  color: #F3E8FF;
  padding-right: 50px;
  padding-left: 20px;
  border-radius: 30px;
  height: 52px;
  transition: all 0.3s ease;
}
.gameplay-section .search-box-wrapper input:focus {
  border-color: #FFB800;
  box-shadow: 0 0 15px rgba(255, 184, 0, 0.25);
  background-color: #1a1035;
  color: #F3E8FF;
}
.gameplay-section .search-box-wrapper input::placeholder {
  color: #7D728D;
}
.gameplay-section .btn-filter {
  background-color: transparent;
  border: 2px solid #8A2BE2;
  color: #F3E8FF;
  border-radius: 30px;
  padding: 8px 24px;
  font-weight: 600;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gameplay-section .btn-filter:hover,
.gameplay-section .btn-filter.active {
  background-color: #8A2BE2;
  border-color: #00F0FF;
  color: #F3E8FF;
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}
.gameplay-section .gameplay-card-item {
  background-color: #150D2A;
  border: 1px solid rgba(255, 184, 0, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gameplay-section .gameplay-card-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 184, 0, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(138, 43, 226, 0.15);
}
.gameplay-section .card-img-wrapper {
  height: 220px;
}
.gameplay-section .gameplay-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gameplay-section .gameplay-card-item:hover .gameplay-img {
  transform: scale(1.08);
}
.gameplay-section .badge-category {
  background: rgba(138, 43, 226, 0.95);
  color: #FFB800;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 184, 0, 0.3);
}
.gameplay-section .card-title-text {
  font-family: 'Cinzel', serif;
  font-weight: 700;
}
.gameplay-section .card-title-text a {
  color: #FFB800;
  transition: color 0.3s ease;
}
.gameplay-section .card-title-text a:hover {
  color: #00F0FF;
}
.gameplay-section .card-desc-text {
  color: #B5A9C2;
  font-size: 0.95rem;
  line-height: 1.6;
}
.gameplay-section .border-gold-subtle {
  border-color: rgba(255, 184, 0, 0.15) !important;
}
.gameplay-section .author-info {
  color: #7D728D !important;
}
.gameplay-section .btn-card-action {
  background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
  color: #090514;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 6px 18px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gameplay-section .btn-card-action:hover {
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
  transform: translateY(-2px);
  color: #090514;
}
@media (max-width: 768px) {
  .gameplay-section .section-title {
    font-size: 1.6rem;
  }
  .gameplay-section .section-subtitle {
    font-size: 0.95rem;
  }
}

/* ===== PAGE: knowledge-base ===== */
.kb-list-section { background-color: #090514; color: #F3E8FF; font-family: 'Plus Jakarta Sans', sans-serif; direction: rtl; } .kb-list-section .search-wrapper { position: relative; } .kb-list-section .search-wrapper .search-icon { position: absolute; top: 50%; right: 1.25rem; transform: translateY(-50%); color: #7D728D; pointer-events: none; z-index: 5; transition: color 0.3s ease; } .kb-list-section .search-wrapper input { background-color: #150D2A; border: 1px solid rgba(255, 184, 0, 0.15); color: #F3E8FF; border-radius: 50px; padding-right: 3rem; padding-left: 1rem; transition: all 0.3s ease; } .kb-list-section .search-wrapper input:focus { background-color: #1a0f35; border-color: #FFB800; box-shadow: 0 0 10px rgba(255, 184, 0, 0.2); outline: none; } .kb-list-section .search-wrapper input:focus + .search-icon { color: #FFB800; } .kb-list-section .btn-outline-primary { color: #F3E8FF; border-color: rgba(255, 184, 0, 0.2); background-color: transparent; border-radius: 50px; padding: 0.5rem 1.5rem; font-weight: 500; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); } .kb-list-section .btn-outline-primary:hover, .kb-list-section .btn-outline-primary.active { background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%); border-color: #FFB800; color: #090514; box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4); } .kb-list-section .kb-card { background-color: #150D2A; border: 1px solid rgba(255, 184, 0, 0.15); border-radius: 16px; overflow: hidden; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); } .kb-list-section .kb-card:hover { transform: translateY(-5px) scale(1.02); border-color: rgba(255, 184, 0, 0.4); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 184, 0, 0.15); background-color: #1a0f35; } .kb-list-section .kb-card-img-wrapper { aspect-ratio: 16 / 10; overflow: hidden; } .kb-list-section .kb-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .kb-list-section .kb-card:hover .kb-card-img { transform: scale(1.1); } .kb-list-section .bg-purple-badge { background-color: rgba(138, 43, 226, 0.2); border: 1px solid #8A2BE2; color: #F3E8FF; border-radius: 50px; padding: 0.35rem 0.8rem; font-size: 0.75rem; top: 1rem; right: 1rem; } .kb-list-section .kb-card-title a { color: #F3E8FF; font-family: 'Cinzel', serif; font-weight: 700; font-size: 1.25rem; transition: color 0.3s ease; } .kb-list-section .kb-card:hover .kb-card-title a { color: #FFB800; } .kb-list-section .kb-card-text { color: #B5A9C2; font-size: 0.95rem; line-height: 1.6; } .kb-list-section .kb-author { color: #F3E8FF; font-size: 0.85rem; font-weight: 500; } .kb-list-section .kb-date { color: #7D728D; font-size: 0.85rem; } .kb-list-section .border-subtle { border-color: rgba(255, 184, 0, 0.1) !important; }

/* ===== PAGE: gallery ===== */
.al-gallery {
  background-color: #090514;
  padding: 80px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #F3E8FF;
  position: relative;
  overflow: hidden;
  direction: rtl;
}

.al-gallery::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(9, 5, 20, 0) 80%);
  z-index: 1;
  pointer-events: none;
}

.al-gallery .container {
  position: relative;
  z-index: 2;
}

.al-gallery .al-badge {
  background: rgba(138, 43, 226, 0.15);
  border: 1px solid rgba(255, 184, 0, 0.25);
  color: #FFB800;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.al-gallery .al-title {
  font-family: 'Cinzel', serif;
  color: #FFB800;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 184, 0, 0.2);
}

.al-gallery .al-desc {
  color: #B5A9C2 !important;
  font-size: 1.1rem;
  line-height: 1.7;
}

.al-gallery .al-filter-btn {
  background: transparent;
  color: #B5A9C2;
  border: 1px solid rgba(255, 184, 0, 0.15);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.al-gallery .al-filter-btn:hover,
.al-gallery .al-filter-btn.active {
  background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
  color: #090514;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.35);
}

.al-gallery .al-search-box .input-group {
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: 50px;
  overflow: hidden;
  background: #150D2A;
  transition: all 0.3s ease;
}

.al-gallery .al-search-box .input-group:focus-within {
  border-color: #FFB800;
  box-shadow: 0 0 15px rgba(255, 184, 0, 0.2);
}

.al-gallery .al-search-box .form-control {
  background: transparent;
  border: none;
  color: #F3E8FF;
  padding: 12px 20px;
  font-size: 0.95rem;
  box-shadow: none;
  text-align: right;
}

.al-gallery .al-search-box .form-control::placeholder {
  color: #7D728D;
}

.al-gallery .al-search-box .input-group-text {
  border: none;
  color: #FFB800 !important;
  font-size: 1.25rem;
  padding-left: 20px;
  background: transparent;
}

.al-gallery .al-gallery-card {
  background: #150D2A;
  border: 1px solid rgba(255, 184, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.al-gallery .al-gallery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 184, 0, 0.35);
  box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2), 0 0 25px rgba(255, 184, 0, 0.15);
}

.al-gallery .al-img-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.al-gallery .al-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.al-gallery .al-gallery-card:hover .al-card-img {
  transform: scale(1.08);
}

.al-gallery .al-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 5, 20, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.al-gallery .al-gallery-card:hover .al-card-overlay {
  opacity: 1;
}

.al-gallery .al-action-btn {
  background: #FFB800;
  color: #090514;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
}

.al-gallery .al-action-btn:hover {
  transform: scale(1.1);
  background: #00F0FF;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
}

.al-gallery .al-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.al-gallery .al-card-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: #7D728D;
}

.al-gallery .al-meta-item i {
  color: #FFB800;
  margin-left: 4px;
}

.al-gallery .al-card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: right;
}

.al-gallery .al-card-title a {
  color: #F3E8FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.al-gallery .al-card-title a:hover {
  color: #FFB800;
}

.al-gallery .al-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #B5A9C2 !important;
  text-align: right;
}

.al-gallery .al-card-link {
  color: #FFB800;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}

.al-gallery .al-card-link i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.al-gallery .al-card-link:hover {
  color: #00F0FF;
}

.al-gallery .al-card-link:hover i {
  transform: translateX(-5px);
}

.al-gallery .al-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.al-gallery .al-lightbox[aria-hidden="false"] {
  display: flex;
}

.al-gallery .al-lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 5, 20, 0.95);
  backdrop-filter: blur(10px);
}

.al-gallery .al-lightbox-content {
  position: relative;
  z-index: 10001;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.al-gallery .al-lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  border: 2px solid rgba(255, 184, 0, 0.3);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

.al-gallery .al-lightbox-caption {
  margin-top: 15px;
  color: #F3E8FF;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.al-gallery .al-lightbox-close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: #F3E8FF;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* ===== PAGE: game-page ===== */
.aladin-game-section {
  background-color: #090514;
  color: #F3E8FF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  direction: rtl;
}

.aladin-game-section .badge-custom {
  background-color: rgba(255, 184, 0, 0.15);
  color: #FFB800;
  border: 1px solid rgba(255, 184, 0, 0.3);
  padding: 6px 16px;
  font-size: 0.9rem;
  border-radius: 50px;
}

.aladin-game-section .game-main-title {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: #F3E8FF;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
}

@media (max-width: 768px) {
  .aladin-game-section .game-main-title {
    font-size: 1.6rem;
  }
}

.aladin-game-section .game-sub-title {
  color: #B5A9C2 !important;
  font-size: 1.1rem;
}

.aladin-game-section .game-wrapper-box {
  background-color: #150D2A;
  border-radius: 16px;
  border: 1px solid rgba(255, 184, 0, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(138, 43, 226, 0.15);
  overflow: hidden;
  position: relative;
}

.aladin-game-section .game-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #000;
  z-index: 1;
}

.aladin-game-section .game-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

.aladin-game-section .game-control-bar {
  position: relative;
  z-index: 3;
}

.aladin-game-section .btn-control {
  position: relative;
  z-index: 4;
}

.aladin-game-section .game-iframe-wrapper:fullscreen {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
}

.aladin-game-section .game-iframe-wrapper:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
}

.aladin-game-section .game-control-bar {
  background-color: #0E081F;
  border-top: 1px solid rgba(255, 184, 0, 0.15);
}

.aladin-game-section .btn-control {
  background: transparent;
  border: 1px solid rgba(138, 43, 226, 0.4);
  color: #F3E8FF;
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.aladin-game-section .btn-control:hover {
  background-color: #8A2BE2;
  border-color: #00F0FF;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(138, 43, 226, 0.5);
}

.aladin-game-section .btn-control.active {
  background-color: #FFB800;
  color: #090514;
  border-color: #FFB800;
}

/* ==========================================================================
   Homepage embedded game section (.game-iframe-section)
   ========================================================================== */

.game-iframe-section .game-card-container {
  background-color: #150D2A;
  border-radius: 16px;
  border: 1px solid rgba(255, 184, 0, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(138, 43, 226, 0.15);
  overflow: hidden;
  position: relative;
}

.game-iframe-section .game-header {
  background-color: #0E081F;
  border-bottom: 1px solid rgba(255, 184, 0, 0.15);
  position: relative;
  z-index: 3;
  gap: 12px;
  flex-wrap: wrap;
}

.game-iframe-section .game-title {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: #FFB800;
}

.game-iframe-section .btn-game-action {
  background: transparent;
  border: 1px solid rgba(138, 43, 226, 0.4);
  color: #F3E8FF;
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 4;
}

.game-iframe-section .btn-game-action i {
  font-size: 1.25rem;
  line-height: 1;
}

.game-iframe-section .btn-game-action:hover,
.game-iframe-section .btn-game-action:focus-visible {
  background-color: #8A2BE2;
  border-color: #00F0FF;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(138, 43, 226, 0.5);
  outline: none;
}

.game-iframe-section .js-reload-btn.is-reloading i {
  animation: alindor-spin 0.6s linear;
}

@keyframes alindor-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.game-iframe-section .game-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #000;
  z-index: 1;
}

.game-iframe-section .game-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

.game-iframe-section .game-iframe-wrapper:fullscreen,
.game-iframe-section .game-iframe-wrapper:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
}

.game-iframe-section .game-footer {
  background-color: #0E081F;
  border-top: 1px solid rgba(255, 184, 0, 0.15);
  position: relative;
  z-index: 3;
}

.game-iframe-section .game-desc {
  color: #B5A9C2;
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (max-width: 575.98px) {
  .game-iframe-section .game-title {
    font-size: 1.05rem;
  }

  .game-iframe-section .btn-game-action {
    padding: 8px 12px;
    min-width: 44px;
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .game-iframe-section .btn-game-action {
    transition: none;
  }

  .game-iframe-section .js-reload-btn.is-reloading i {
    animation: none;
  }
}

.aladin-game-section .game-info-tabs {
  background-color: #150D2A;
  border-radius: 16px;
  border: 1px solid rgba(255, 184, 0, 0.15);
  overflow: hidden;
}

.aladin-game-section .nav-tabs {
  background-color: #0E081F;
  border-bottom: 1px solid rgba(255, 184, 0, 0.15) !important;
  padding: 8px 8px 0 8px;
}

.aladin-game-section .nav-tabs .nav-link {
  color: #B5A9C2;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.aladin-game-section .nav-tabs .nav-link.active {
  color: #FFB800;
  background-color: #150D2A;
  border-radius: 8px 8px 0 0;
  border-bottom: 3px solid #FFB800 !important;
}

.aladin-game-section .tab-title {
  color: #FFB800;
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
}

.aladin-game-section .tab-desc {
  color: #B5A9C2;
  line-height: 1.8;
}

.aladin-game-section .instructions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aladin-game-section .instructions-list li {
  color: #B5A9C2;
  margin-bottom: 12px;
  display: flex;
  align-items: start;
}

.aladin-game-section .text-accent {
  color: #00F0FF !important;
}

.aladin-game-section .feature-bullet h5 {
  color: #F3E8FF;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.aladin-game-section .feature-bullet p {
  font-size: 0.95rem;
}

.aladin-game-section .sidebar-card {
  background-color: #150D2A;
  border-radius: 16px;
  border: 1px solid rgba(255, 184, 0, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.aladin-game-section .sidebar-title {
  color: #FFB800;
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.aladin-game-section .game-meta-list li {
  font-size: 1rem;
}

.aladin-game-section .btn-primary-custom {
  background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
  color: #090514;
  border: none;
  font-weight: bold;
  padding: 12px 24px;
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
  transition: all 0.3s ease;
}

.aladin-game-section .btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 184, 0, 0.6);
  color: #090514;
}

.aladin-game-section .btn-secondary-custom {
  background: transparent;
  border: 2px solid #8A2BE2;
  color: #F3E8FF;
  font-weight: bold;
  transition: all 0.3s ease;
}

.aladin-game-section .btn-secondary-custom:hover {
  background-color: #8A2BE2;
  border-color: #00F0FF;
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
  color: #ffffff;
}

.aladin-game-section .comment-item {
  background-color: #0E081F;
  border: 1px solid rgba(138, 43, 226, 0.15);
  transition: all 0.3s ease;
}

.aladin-game-section .comment-item:hover {
  border-color: rgba(255, 184, 0, 0.3);
}

.aladin-game-section .form-control {
  background-color: #0E081F;
  border: 1px solid rgba(138, 43, 226, 0.3);
  color: #F3E8FF;
}

.aladin-game-section .form-control::placeholder {
  color: #7D728D;
}

.aladin-game-section .form-control:focus {
  background-color: #0E081F;
  border-color: #00F0FF;
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
  color: #F3E8FF;
}

/* ===== PAGE: privacy ===== */
.alindor-privacy { background-color: #090514; font-family: 'Plus Jakarta Sans', sans-serif; direction: rtl; } .alindor-privacy .privacy-sidebar { background-color: #150D2A; border: 1px solid rgba(255, 184, 0, 0.15); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); } .alindor-privacy .sidebar-title { font-family: 'Cinzel', serif; font-size: 1.3rem; border-bottom: 2px solid rgba(138, 43, 226, 0.3); padding-bottom: 12px; } .alindor-privacy .privacy-tabs-list .nav-link { background-color: rgba(9, 5, 20, 0.5); border: 1px solid rgba(255, 184, 0, 0.05); color: #B5A9C2; border-radius: 12px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); width: 100%; text-align: right; } .alindor-privacy .privacy-tabs-list .nav-link:hover { background-color: rgba(138, 43, 226, 0.15); border-color: rgba(255, 184, 0, 0.2); color: #F3E8FF; } .alindor-privacy .privacy-tabs-list .nav-link.active { background: linear-gradient(95deg, #1A0B2E 0%, #150D2A 100%); border-color: #FFB800; color: #FFB800; box-shadow: 0 0 15px rgba(255, 184, 0, 0.15); } .alindor-privacy .privacy-tabs-list .nav-link i { margin-left: 12px; margin-right: 0 !important; } .alindor-privacy .privacy-content-wrapper { background-color: #150D2A; border: 1px solid rgba(255, 184, 0, 0.15); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); min-height: 450px; } .alindor-privacy .pane-title { font-family: 'Cinzel', serif; font-size: 1.8rem; border-bottom: 1px solid rgba(255, 184, 0, 0.2); padding-bottom: 15px; } .alindor-privacy .pane-text { color: #B5A9C2; line-height: 1.8; font-size: 1.05rem; } .alindor-privacy .sub-title { font-family: 'Cinzel', serif; font-size: 1.3rem; } .alindor-privacy .custom-list { list-style: none; padding-right: 0; padding-left: 0; } .alindor-privacy .custom-list li { position: relative; padding-right: 28px; margin-bottom: 12px; color: #B5A9C2; font-size: 1rem; line-height: 1.6; } .alindor-privacy .custom-list li i { position: absolute; right: 0; top: 4px; color: #00F0FF; font-size: 1.1rem; } .alindor-privacy .info-alert { background-color: rgba(0, 240, 255, 0.08); border: 1px solid rgba(0, 240, 255, 0.2); color: #F3E8FF; display: flex; align-items: center; } .alindor-privacy .info-alert i { margin-left: 10px; } .alindor-privacy .cookie-card { background-color: #090514; border: 1px solid rgba(138, 43, 226, 0.2); } .alindor-privacy .contact-card { background: linear-gradient(135deg, #0E081F 0%, #150D2A 100%); border: 1px solid rgba(255, 184, 0, 0.15); } .alindor-privacy .btn-support { background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%); color: #090514 !important; font-weight: 600; border: none; text-decoration: none; box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3); transition: all 0.3s ease; } .alindor-privacy .btn-support:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 184, 0, 0.5); } .alindor-privacy .fade-in { animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; } @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 767px) { .alindor-privacy .pane-title { font-size: 1.4rem; } .alindor-privacy .privacy-content-wrapper { padding: 20px !important; min-height: auto; } .alindor-privacy .privacy-tabs-list { flex-direction: row !important; flex-wrap: wrap; gap: 8px; } .alindor-privacy .privacy-tabs-list .nav-link { width: auto; flex: 1 1 calc(50% - 8px); font-size: 0.85rem; padding: 10px !important; justify-content: center; } .alindor-privacy .privacy-tabs-list .nav-link i { margin-left: 6px; } }

/* ===== PAGE: terms ===== */
.terms-content-section {
  background-color: #090514;
  color: #F3E8FF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  overflow: hidden;
  direction: rtl;
  padding: 80px 0;
}

.terms-content-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(9, 5, 20, 0) 70%);
  pointer-events: none;
}

.terms-content-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, rgba(9, 5, 20, 0) 70%);
  pointer-events: none;
}

.terms-content-section .terms-card {
  background: #150D2A;
  border: 1px solid rgba(255, 184, 0, 0.15);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  transform: translateY(0);
}

.terms-content-section .terms-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 184, 0, 0.4);
  box-shadow: 0 15px 35px rgba(138, 43, 226, 0.2);
}

.terms-content-section .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(138, 43, 226, 0.2);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 15px;
}

.terms-content-section .icon-box i {
  font-size: 24px;
}

.terms-content-section .text-primary {
  color: #FFB800 !important;
  font-family: 'Cinzel', serif;
  font-weight: 700;
}

.terms-content-section .text-secondary {
  color: #B5A9C2 !important;
  line-height: 1.8;
}

.terms-content-section .text-accent {
  color: #00F0FF !important;
}

.terms-content-section .btn-outline-custom {
  color: #F3E8FF;
  border: 2px solid #8A2BE2;
  background-color: transparent;
  border-radius: 50px;
  padding: 8px 24px;
  font-weight: 500;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.terms-content-section .btn-outline-custom:hover,
.terms-content-section .btn-outline-custom.active {
  background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
  border-color: transparent;
  color: #090514;
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-content-block {
  background-color: #090514;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 80px 0;
}
.disclaimer-content-block .disclaimer-card {
  background-color: #150D2A;
  border: 1px solid rgba(255, 184, 0, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(138, 43, 226, 0.15);
}
.disclaimer-content-block .disclaimer-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(9, 5, 20, 0) 70%);
  border: 2px solid #8A2BE2;
  color: #FFB800;
  font-size: 2.5rem;
}
.disclaimer-content-block .text-primary-color {
  color: #FFB800 !important;
  font-family: 'Cinzel', serif;
}
.disclaimer-content-block .disclaimer-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
  border-radius: 2px;
}
.disclaimer-content-block .text-light-primary {
  color: #F3E8FF !important;
}
.disclaimer-content-block .text-light-secondary {
  color: #B5A9C2 !important;
  line-height: 1.8;
}
.disclaimer-content-block .text-muted-color {
  color: #7D728D !important;
}
.disclaimer-content-block .disclaimer-section h3 i {
  color: #8A2BE2;
}
.disclaimer-content-block ul {
  list-style-type: square;
  color: #B5A9C2;
}
.disclaimer-content-block ul li {
  margin-bottom: 10px;
}
.disclaimer-content-block .btn-primary-custom {
  background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
  color: #090514;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.disclaimer-content-block .btn-primary-custom:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 184, 0, 0.6);
  color: #090514;
}
.disclaimer-content-block .js-acceptance-message {
  font-size: 1.1rem;
  font-weight: 500;
}

.comment-card {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(138, 43, 226, 0.15);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    margin-bottom: 20px;
}

.comment-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 184, 0, 0.2);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.comment-user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #090514;
    user-select: none;
    flex-shrink: 0;
    border: 2px solid rgba(255, 184, 0, 0.3);
    background-size: cover;
    object-fit: cover;
}

.bg-gradient-gold {
    background: linear-gradient(135deg, #FFB800 0%, #FF8A00 100%);
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-name {
    color: #F3E8FF;
    font-weight: 600;
    font-size: 1.05rem;
}

.user-badge {
    font-size: 0.75rem;
    padding: 2px 10px;
    border-radius: 20px;
    margin-top: 4px;
    font-weight: 500;
}

.badge-gold {
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.2);
    color: #FFB800;
}

.comment-time {
    color: #7D728D;
    font-size: 0.85rem;
}

.comment-body {
    color: #B5A9C2;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: right;
}

.comment-footer {
    display: flex;
    gap: 16px;
    border-top: 1px solid rgba(255, 184, 0, 0.08);
    padding-top: 16px;
}

.action-btn {
    background: transparent;
    border: none;
    color: #B5A9C2;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px 14px;
    border-radius: 20px;
}

.action-btn:hover {
    color: #FFB800;
    background: rgba(255, 184, 0, 0.05);
}

.action-btn.active {
    color: #FFB800;
}

.action-btn i {
    font-size: 1.2rem;
}

.reply-container {
    position: relative;
    padding-right: 48px;
}

.reply-thread-line {
    position: absolute;
    right: 24px;
    top: -24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 184, 0, 0.2), rgba(138, 43, 226, 0.2));
    border-radius: 1px;
}

.reply-comment-item {
    background-color: #0E081F;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.reply-comment-item:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 240, 255, 0.2);
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #8A2BE2 0%, #00F0FF 100%);
}

.badge-cyan {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: #00F0FF;
}


/* ===== PAGE TEMPLATE: characters-list ===== */
body.alindor-dark-theme {
    background-color: #090514;
}

.alindornow-header {
    background-color: #150D2A;
    border-bottom: 2px solid rgba(255, 184, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    direction: rtl;
}

.alindornow-header.scrolled {
    background-color: #090514;
    border-bottom-color: rgba(255, 184, 0, 0.4);
}

.alindornow-header .brand-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
    margin-left: 12px;
}

.alindornow-header .brand-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #FFB800;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
}

.alindornow-header .navbar-toggler {
    border: 1px solid rgba(255, 184, 0, 0.3);
    color: #FFB800;
    font-size: 1.75rem;
    padding: 4px 8px;
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.alindornow-header .navbar-toggler:focus {
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
    outline: none;
}

.alindornow-header .nav-link {
    color: #B5A9C2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.alindornow-header .nav-link:hover,
.alindornow-header .nav-link.active {
    color: #FFB800;
}

.alindornow-header .btn-nav-cta {
    display: inline-block;
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: #090514;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.alindornow-header .btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.5);
    color: #090514;
}

@media (max-width: 991.98px) {
    .alindornow-header .navbar-collapse {
        background-color: #150D2A;
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
        border: 1px solid rgba(255, 184, 0, 0.15);
    }

    .alindornow-header .nav-cta-wrapper {
        margin-top: 15px;
        text-align: center;
    }
}

.aladin-hero {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #090514;
}

.aladin-hero .aladin-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 5, 20, 0.95) 0%, rgba(26, 11, 46, 0.9) 50%, rgba(9, 5, 20, 0.95) 100%);
    z-index: 1;
}

.aladin-hero .aladin-hero-content-wrapper {
    z-index: 2;
}

.aladin-hero .aladin-hero-badge {
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(255, 184, 0, 0.3);
    color: #FFB800;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.aladin-hero .aladin-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #F3E8FF;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.aladin-hero .aladin-hero-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #B5A9C2;
}

.aladin-hero .aladin-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: #090514;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.aladin-hero .aladin-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 184, 0, 0.6);
    color: #090514;
}

.aladin-hero .aladin-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #F3E8FF;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #8A2BE2;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aladin-hero .aladin-btn-secondary:hover {
    background: #8A2BE2;
    color: #F3E8FF;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
    border-color: #8A2BE2;
}

.aladin-hero .aladin-hero-preview-container {
    position: relative;
    border-radius: 16px;
    padding: 10px;
    background: rgba(21, 13, 42, 0.6);
    border: 1px solid rgba(255, 184, 0, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aladin-hero .aladin-hero-preview-container:hover {
    transform: scale(1.02);
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(138, 43, 226, 0.3);
}

.aladin-hero .aladin-hero-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(9, 5, 20, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.aladin-hero .aladin-hero-preview-link {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.aladin-hero .aladin-hero-preview-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .aladin-hero {
        padding: 80px 0;
    }

    .aladin-hero .aladin-hero-title {
        font-size: 18px !important;
    }

    .aladin-hero .aladin-hero-badge {
        font-size: 12px;
    }

    .aladin-hero .aladin-hero-description {
        font-size: 14px !important;
        line-height: 1.6;
    }
}

.char-details-section {
    background-color: #0E081F;
    color: #F3E8FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.char-details-section .details-sidebar {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.char-details-section .sidebar-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 1.4rem;
    border-bottom: 2px solid rgba(138, 43, 226, 0.3);
    padding-bottom: 10px;
}

.char-details-section .info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.char-details-section .info-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
}

.char-details-section .info-list li:last-child {
    border-bottom: none;
}

.char-details-section .info-list .label {
    color: #B5A9C2;
    font-weight: 500;
}

.char-details-section .info-list .value {
    color: #FFB800;
    font-weight: 700;
}

.char-details-section .content-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 1.8rem;
}

.char-details-section .content-text {
    color: #B5A9C2;
    font-size: 1.1rem;
    line-height: 1.8;
}

.char-details-section .ability-card {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.char-details-section .ability-card:hover {
    border-color: #8A2BE2;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.15);
}

.char-details-section .ability-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.char-details-section .ability-header i {
    color: #00F0FF;
    font-size: 1.8rem;
}

.char-details-section .ability-header h4 {
    color: #F3E8FF;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.char-details-section .ability-card p {
    color: #B5A9C2;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.other-chars-section {
    background-color: #090514;
    color: #F3E8FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.other-chars-section .section-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 2.2rem;
}

.other-chars-section .section-desc {
    color: #B5A9C2;
}

.other-chars-section .other-char-card {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.other-chars-section .other-char-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(138, 43, 226, 0.2);
}

.other-chars-section .char-img-wrapper {
    position: relative;
    display: block;
    padding-top: 80%;
    overflow: hidden;
}

.other-chars-section .char-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.other-chars-section .other-char-card:hover .char-img {
    transform: scale(1.08);
}

.other-chars-section .char-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.other-chars-section .char-intro {
    color: #B5A9C2;
    font-size: 0.95rem;
    line-height: 1.6;
}

.other-chars-section .btn-char-action {
    display: block;
    background: transparent;
    border: 2px solid #8A2BE2;
    color: #F3E8FF;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.other-chars-section .btn-char-action:hover {
    background-color: #8A2BE2;
    color: #F3E8FF;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

.char-comments-section {
    background-color: #0E081F;
    color: #F3E8FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.char-comments-section .section-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 2.2rem;
}

.char-comments-section .btn-filter {
    border-radius: 50px;
    background: transparent;
    border: 2px solid #8A2BE2;
    color: #F3E8FF;
    padding: 8px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.char-comments-section .btn-filter:hover,
.char-comments-section .btn-filter.active {
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    border-color: #FFB800;
    color: #090514;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
}

.char-comments-section .comment-card {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.char-comments-section .comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 10px;
}

.char-comments-section .comment-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.char-comments-section .avatar-initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #090514;
}

.char-comments-section .bg-gradient-gold {
    background: linear-gradient(135deg, #FFB800 0%, #FF8A00 100%);
}

.char-comments-section .bg-gradient-purple {
    background: linear-gradient(135deg, #8A2BE2 0%, #00F0FF 100%);
    color: #F3E8FF;
}

.char-comments-section .user-details {
    display: flex;
    flex-direction: column;
}

.char-comments-section .user-name {
    font-weight: 600;
    color: #F3E8FF;
}

.char-comments-section .user-badge {
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
    width: fit-content;
}

.char-comments-section .badge-gold {
    background-color: rgba(255, 184, 0, 0.15);
    color: #FFB800;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.char-comments-section .badge-cyan {
    background-color: rgba(0, 240, 255, 0.15);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.char-comments-section .comment-time {
    color: #7D728D;
    font-size: 0.85rem;
}

.char-comments-section .comment-body {
    color: #B5A9C2;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.char-comments-section .comment-footer {
    display: flex;
    gap: 15px;
}

.char-comments-section .action-btn {
    background: transparent;
    border: none;
    color: #B5A9C2;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 6px;
}

.char-comments-section .action-btn:hover {
    color: #FFB800;
    background-color: rgba(255, 184, 0, 0.05);
}

.char-comments-section .action-btn.like-btn.active {
    color: #FFB800;
}

.char-comments-section .reply-container {
    position: relative;
    padding-right: 40px;
}

.char-comments-section .reply-thread-line {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(138, 43, 226, 0.3);
}

.char-comments-section .reply-comment-item {
    border-color: rgba(138, 43, 226, 0.3);
}

.char-comments-section .comment-input-area {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
}

.char-comments-section .stars-rating {
    color: #7D728D;
    font-size: 1.25rem;
    cursor: pointer;
}

.char-comments-section .stars-rating i.active {
    color: #FFB800;
}

.char-comments-section .form-control {
    background-color: #090514;
    border: 1px solid rgba(255, 184, 0, 0.15);
    color: #F3E8FF;
}

.char-comments-section .form-control::placeholder {
    color: #7D728D;
}

.char-comments-section .form-control:focus {
    border-color: #FFB800;
    background-color: #090514;
    color: #F3E8FF;
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.2);
}

.char-comments-section .text-muted-custom {
    color: #7D728D !important;
}

.char-comments-section .text-light-custom {
    color: #F3E8FF !important;
}

.alindor-footer {
    background-color: #090514;
    color: #F3E8FF;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 184, 0, 0.15);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.alindor-footer .footer-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.alindor-footer .footer-desc {
    color: #B5A9C2;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.alindor-footer .footer-links li {
    margin-bottom: 0.75rem;
}

.alindor-footer .footer-links a {
    color: #B5A9C2;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.alindor-footer .footer-links a:hover {
    color: #00F0FF;
}

.alindor-footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.alindor-footer .contact-item i {
    color: #FFB800;
    font-size: 1.3rem;
    margin-top: 3px;
}

.alindor-footer .contact-label {
    display: block;
    color: #F3E8FF;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.alindor-footer .contact-value {
    color: #B5A9C2;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.alindor-footer .contact-item a.contact-value:hover {
    color: #00F0FF;
}

.alindor-footer .map-container {
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
}

.alindor-footer .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.alindor-footer .footer-bottom {
    border-top: 1px solid rgba(125, 114, 141, 0.2);
    margin-top: 50px;
    padding-top: 25px;
}

.alindor-footer .footer-copyright {
    color: #7D728D;
    font-size: 0.9rem;
}

.alindor-footer .footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.alindor-footer .footer-bottom-links a {
    color: #7D728D;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.alindor-footer .footer-bottom-links a:hover {
    color: #FFB800;
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 18px !important;
    }

    h2 {
        font-size: 16px !important;
    }

    h3 {
        font-size: 14px !important;
    }

    h4 {
        font-size: 13px !important;
    }
}

/* ===== PAGE TEMPLATE: gameplay-list ===== */
.gameplay-detail-template {
    background-color: #090514;
    color: #F3E8FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

.gameplay-detail-template .detail-hero {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    background-color: #090514;
}

.gameplay-detail-template .detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(9, 5, 20, 0.7) 0%, rgba(9, 5, 20, 0.95) 100%);
    z-index: 1;
}

.gameplay-detail-template .detail-hero-content-wrapper {
    z-index: 2;
}

.gameplay-detail-template .detail-hero-badge {
    background: rgba(138, 43, 226, 0.25);
    border: 1px solid rgba(255, 184, 0, 0.3);
    color: #FFB800;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.gameplay-detail-template .detail-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #F3E8FF;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.gameplay-detail-template .detail-hero-description {
    font-size: 1.15rem;
    color: #B5A9C2;
    line-height: 1.6;
}

.gameplay-detail-template .detail-card-panel {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.gameplay-detail-template .border-bottom-subtle {
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
}

.gameplay-detail-template .meta-badge {
    font-size: 0.9rem;
    color: #B5A9C2;
    display: inline-flex;
    align-items: center;
}

.gameplay-detail-template .meta-badge span {
    color: #FFB800;
    margin-right: 4px;
    font-weight: 600;
}

.gameplay-detail-template .detail-rich-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #B5A9C2;
}

.gameplay-detail-template .detail-rich-text p {
    margin-bottom: 1.5rem;
}

.gameplay-detail-template .detail-rich-text h2,
.gameplay-detail-template .detail-rich-text h3 {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.gameplay-detail-template .section-inner-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #FFB800;
    font-weight: 700;
}

.gameplay-detail-template .btn-comments-tab {
    background: transparent;
    border: 2px solid #8A2BE2;
    color: #F3E8FF;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gameplay-detail-template .btn-comments-tab:hover,
.gameplay-detail-template .btn-comments-tab.active {
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    border-color: transparent;
    color: #090514;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.gameplay-detail-template .comment-card {
    background-color: #0E081F;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gameplay-detail-template .comment-card:hover {
    border-color: rgba(255, 184, 0, 0.35);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.15);
}

.gameplay-detail-template .comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 10px;
}

.gameplay-detail-template .comment-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gameplay-detail-template .avatar-initials {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #090514;
    font-size: 1.1rem;
}

.gameplay-detail-template .bg-gradient-gold {
    background: linear-gradient(135deg, #FFB800 0%, #FF8A00 100%);
}

.gameplay-detail-template .bg-gradient-purple {
    background: linear-gradient(135deg, #8A2BE2 0%, #C71585 100%);
    color: #F3E8FF;
}

.gameplay-detail-template .user-details {
    display: flex;
    flex-direction: column;
}

.gameplay-detail-template .user-name {
    font-weight: 600;
    color: #F3E8FF;
    font-size: 1.05rem;
}

.gameplay-detail-template .user-badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    width: fit-content;
    margin-top: 2px;
}

.gameplay-detail-template .badge-gold {
    background-color: rgba(255, 184, 0, 0.15);
    color: #FFB800;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.gameplay-detail-template .badge-cyan {
    background-color: rgba(0, 240, 255, 0.15);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.gameplay-detail-template .comment-time {
    color: #7D728D;
    font-size: 0.85rem;
}

.gameplay-detail-template .comment-body {
    color: #B5A9C2;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gameplay-detail-template .comment-footer {
    display: flex;
    gap: 15px;
    border-top: 1px solid rgba(255, 184, 0, 0.08);
    padding-top: 0.75rem;
}

.gameplay-detail-template .action-btn {
    background: transparent;
    border: none;
    color: #7D728D;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    padding: 0;
    cursor: pointer;
}

.gameplay-detail-template .action-btn:hover,
.gameplay-detail-template .action-btn.active {
    color: #FFB800;
}

.gameplay-detail-template .reply-container {
    position: relative;
    padding-right: 40px;
}

.gameplay-detail-template .reply-thread-line {
    position: absolute;
    right: 20px;
    top: -24px;
    bottom: 24px;
    width: 2px;
    background-color: rgba(138, 43, 226, 0.3);
}

.gameplay-detail-template .form-control-custom {
    width: 100%;
    background-color: #0E081F;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 10px;
    padding: 12px 16px;
    color: #F3E8FF;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.gameplay-detail-template .form-control-custom:focus {
    border-color: #FFB800;
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.2);
}

.gameplay-detail-template .form-control-custom::placeholder {
    color: #7D728D !important;
    opacity: 0.8;
}

.gameplay-detail-template .btn-comment-submit {
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: #090514;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gameplay-detail-template .btn-comment-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.5);
}

.gameplay-detail-template .detail-sidebar-panel {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.gameplay-detail-template .sidebar-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #FFB800;
    font-weight: 700;
}

.gameplay-detail-template .sidebar-desc {
    font-size: 0.95rem;
    color: #B5A9C2;
    line-height: 1.6;
}

.gameplay-detail-template .sidebar-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gameplay-detail-template .sidebar-link-item {
    background-color: #0E081F;
    border: 1px solid rgba(255, 184, 0, 0.15);
    padding: 14px 20px;
    border-radius: 10px;
    color: #F3E8FF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gameplay-detail-template .sidebar-link-item:hover {
    border-color: #FFB800;
    background-color: #1D123B;
    transform: translateX(-4px);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.15);
}

.gameplay-detail-template .sidebar-link-item i {
    color: #FFB800;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.gameplay-detail-template .sidebar-link-item:hover i {
    transform: translateX(-4px);
}

.gameplay-detail-template .btn-sidebar-cta {
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: #090514;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
    transition: all 0.3s ease;
}

.gameplay-detail-template .btn-sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 184, 0, 0.6);
    color: #090514;
}

@media (max-width: 991.98px) {
    .gameplay-detail-template .detail-hero {
        padding: 100px 0 60px;
    }

    .gameplay-detail-template .detail-hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .gameplay-detail-template .detail-hero-title {
        font-size: 18px !important;
    }

    .gameplay-detail-template .detail-hero-description {
        font-size: 14px !important;
    }

    .gameplay-detail-template .reply-container {
        padding-right: 20px;
    }

    .gameplay-detail-template .reply-thread-line {
        right: 10px;
    }
}

/* ===== PAGE TEMPLATE: knowledge-base-list ===== */
.alindornow-header {
    background-color: #150D2A;
    border-bottom: 2px solid rgba(255, 184, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    direction: rtl;
}

.alindornow-header.scrolled {
    background-color: #090514;
    border-bottom-color: rgba(255, 184, 0, 0.4);
}

.alindornow-header .brand-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
    margin-left: 12px;
}

.alindornow-header .brand-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #FFB800;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
}

.alindornow-header .navbar-toggler {
    border: 1px solid rgba(255, 184, 0, 0.3);
    color: #FFB800;
    font-size: 1.75rem;
    padding: 4px 8px;
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.alindornow-header .navbar-toggler:focus {
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
    outline: none;
}

.alindornow-header .nav-link {
    color: #B5A9C2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.alindornow-header .nav-link:hover,
.alindornow-header .nav-link.active {
    color: #FFB800;
}

.alindornow-header .btn-nav-cta {
    display: inline-block;
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: #090514;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.alindornow-header .btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.5);
    color: #090514;
}

@media (max-width: 991.98px) {
    .alindornow-header .navbar-collapse {
        background-color: #150D2A;
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
        border: 1px solid rgba(255, 184, 0, 0.15);
    }

    .alindornow-header .nav-cta-wrapper {
        margin-top: 15px;
        text-align: center;
    }
}

.aladin-hero {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #090514;
}

.aladin-hero .aladin-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 5, 20, 0.95) 0%, rgba(26, 11, 46, 0.9) 50%, rgba(9, 5, 20, 0.95) 100%);
    z-index: 1;
}

.aladin-hero .aladin-hero-content-wrapper {
    z-index: 2;
}

.aladin-hero .aladin-hero-badge {
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(255, 184, 0, 0.3);
    color: #FFB800;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.aladin-hero .aladin-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #F3E8FF;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.aladin-hero .aladin-hero-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #B5A9C2;
}

.aladin-hero .aladin-hero-meta {
    font-size: 0.95rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (max-width: 767.98px) {
    .aladin-hero {
        padding: 80px 0;
    }

    .aladin-hero .aladin-hero-title {
        font-size: 18px !important;
    }

    .aladin-hero .aladin-hero-badge {
        font-size: 12px;
    }

    .aladin-hero .aladin-hero-description {
        font-size: 14px !important;
        line-height: 1.6;
    }
}

.kb-detail-template {
    background-color: #090514;
    color: #F3E8FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 80px 0;
    direction: rtl;
}

.kb-detail-template .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #B5A9C2;
}

.kb-detail-template .breadcrumbs a {
    color: #FFB800;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kb-detail-template .breadcrumbs a:hover {
    color: #00F0FF;
}

.kb-detail-template .main-article-wrapper {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.kb-detail-template .article-meta-info {
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
    padding-bottom: 20px;
}

.kb-detail-template .article-body {
    line-height: 1.8;
    color: #B5A9C2;
}

.kb-detail-template .article-body h2 {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.kb-detail-template .article-body h3 {
    font-family: 'Cinzel', serif;
    color: #00F0FF;
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
}

.kb-detail-template .article-body p {
    margin-bottom: 20px;
}

.kb-detail-template .feature-box {
    background-color: rgba(138, 43, 226, 0.1);
    border: 1px dashed rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}

.kb-detail-template .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kb-detail-template .feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-right: 25px;
}

.kb-detail-template .feature-list li::before {
    content: "\eac4";
    font-family: 'boxicons' !important;
    position: absolute;
    right: 0;
    top: 2px;
    color: #FFB800;
    font-size: 1.2rem;
}

.kb-detail-template .article-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 30px 0;
    border: 1px solid rgba(255, 184, 0, 0.15);
}

.kb-detail-template .article-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.kb-detail-template .faq-accordion .accordion-item {
    background-color: #0E081F;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.kb-detail-template .faq-accordion .accordion-button {
    background-color: #0E081F;
    color: #F3E8FF;
    font-weight: 600;
    border: none;
    box-shadow: none;
    padding: 18px 20px;
    text-align: right;
}

.kb-detail-template .faq-accordion .accordion-button::after {
    filter: invert(1);
    margin-right: auto;
    margin-left: 0;
}

.kb-detail-template .faq-accordion .accordion-button:not(.collapsed) {
    color: #FFB800;
    background-color: rgba(138, 43, 226, 0.1);
}

.kb-detail-template .faq-accordion .accordion-body {
    color: #B5A9C2;
    line-height: 1.7;
    background-color: #0E081F;
    border-top: 1px solid rgba(255, 184, 0, 0.1);
}

.kb-detail-template .kb-sidebar {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.kb-detail-template .kb-sidebar .widget-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 184, 0, 0.15);
}

.kb-detail-template .kb-sidebar .related-articles-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kb-detail-template .kb-sidebar .related-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
}

.kb-detail-template .kb-sidebar .related-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.kb-detail-template .kb-sidebar .related-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.kb-detail-template .kb-sidebar .related-link:hover .related-title {
    color: #00F0FF;
}

.kb-detail-template .kb-sidebar .related-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 184, 0, 0.15);
}

.kb-detail-template .kb-sidebar .related-title {
    display: block;
    color: #F3E8FF;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.kb-detail-template .kb-sidebar .related-date {
    display: block;
    color: #7D728D;
    font-size: 0.8rem;
}

.kb-detail-template .kb-comments-section {
    margin-top: 50px;
}

.kb-detail-template .comment-card {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.kb-detail-template .comment-card:hover {
    border-color: rgba(255, 184, 0, 0.4);
    transform: translateY(-2px);
}

.kb-detail-template .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.kb-detail-template .comment-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kb-detail-template .avatar-initials {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #090514;
    font-size: 1rem;
}

.kb-detail-template .bg-gradient-gold {
    background: linear-gradient(135deg, #FFB800 0%, #FF8A00 100%);
}

.kb-detail-template .bg-gradient-purple {
    background: linear-gradient(135deg, #8A2BE2 0%, #E02BF2 100%);
    color: #F3E8FF;
}

.kb-detail-template .user-details {
    display: flex;
    flex-direction: column;
}

.kb-detail-template .user-name {
    font-weight: 600;
    color: #F3E8FF;
}

.kb-detail-template .user-badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 2px;
    display: inline-block;
    width: max-content;
}

.kb-detail-template .badge-gold {
    background-color: rgba(255, 184, 0, 0.15);
    color: #FFB800;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.kb-detail-template .badge-cyan {
    background-color: rgba(0, 240, 255, 0.15);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.kb-detail-template .comment-time {
    font-size: 0.8rem;
    color: #7D728D;
}

.kb-detail-template .comment-body {
    color: #B5A9C2;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.kb-detail-template .comment-footer {
    display: flex;
    gap: 15px;
    border-top: 1px solid rgba(255, 184, 0, 0.1);
    padding-top: 15px;
}

.kb-detail-template .action-btn {
    background: transparent;
    border: none;
    color: #B5A9C2;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}

.kb-detail-template .action-btn:hover {
    color: #00F0FF;
    background-color: rgba(0, 240, 255, 0.05);
}

.kb-detail-template .like-btn.active {
    color: #FFB800;
}

.kb-detail-template .like-btn.active i {
    color: #FFB800;
}

.kb-detail-template .reply-container {
    margin-right: 40px;
    position: relative;
    padding-right: 15px;
}

.kb-detail-template .reply-thread-line {
    position: absolute;
    right: -25px;
    top: -20px;
    bottom: 20px;
    width: 2px;
    background-color: rgba(255, 184, 0, 0.15);
}

.kb-detail-template .reply-comment-item {
    background-color: #0E081F;
}

.kb-detail-template .comment-form-container {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
}

.kb-detail-template .comment-form-container .form-control {
    background-color: #0E081F;
    border: 1px solid rgba(255, 184, 0, 0.15);
    color: #F3E8FF;
    border-radius: 8px;
    padding: 10px 15px;
}

.kb-detail-template .comment-form-container .form-control::placeholder {
    color: #7D728D;
}

.kb-detail-template .comment-form-container .form-control:focus {
    border-color: #FFB800;
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.2);
    background-color: #0E081F;
}

.kb-detail-template .btn-primary {
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: #090514;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
    transition: all 0.3s ease;
}

.kb-detail-template .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.5);
    background: linear-gradient(90deg, #FFC01E 0%, #FF9A1E 100%);
}

.alindor-footer {
    background-color: #090514;
    color: #F3E8FF;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 184, 0, 0.15);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.alindor-footer .footer-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.alindor-footer .footer-desc {
    color: #B5A9C2;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.alindor-footer .footer-links li {
    margin-bottom: 0.75rem;
}

.alindor-footer .footer-links a {
    color: #B5A9C2;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.alindor-footer .footer-links a:hover {
    color: #00F0FF;
}

.alindor-footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.alindor-footer .contact-item i {
    color: #FFB800;
    font-size: 1.3rem;
    margin-top: 3px;
}

.alindor-footer .contact-label {
    display: block;
    color: #F3E8FF;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.alindor-footer .contact-value {
    color: #B5A9C2;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.alindor-footer .contact-item a.contact-value:hover {
    color: #00F0FF;
}

.alindor-footer .map-container {
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
}

.alindor-footer .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.alindor-footer .footer-bottom {
    border-top: 1px solid rgba(125, 114, 141, 0.2);
    margin-top: 50px;
    padding-top: 25px;
}

.alindor-footer .footer-copyright {
    color: #7D728D;
    font-size: 0.9rem;
}

.alindor-footer .footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.alindor-footer .footer-bottom-links a {
    color: #7D728D;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.alindor-footer .footer-bottom-links a:hover {
    color: #FFB800;
}

/* ===== PAGE TEMPLATE: gallery-list ===== */
.alindornow-header {
    background-color: #150D2A;
    border-bottom: 2px solid rgba(255, 184, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    direction: rtl;
}

.alindornow-header.scrolled {
    background-color: #090514;
    border-bottom-color: rgba(255, 184, 0, 0.4);
}

.alindornow-header .brand-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
    margin-left: 12px;
}

.alindornow-header .brand-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #FFB800;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
}

.alindornow-header .navbar-toggler {
    border: 1px solid rgba(255, 184, 0, 0.3);
    color: #FFB800;
    font-size: 1.75rem;
    padding: 4px 8px;
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.alindornow-header .navbar-toggler:focus {
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
    outline: none;
}

.alindornow-header .nav-link {
    color: #B5A9C2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.alindornow-header .nav-link:hover,
.alindornow-header .nav-link.active {
    color: #FFB800;
}

.alindornow-header .btn-nav-cta {
    display: inline-block;
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: #090514;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.alindornow-header .btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.5);
    color: #090514;
}

@media (max-width: 991.98px) {
    .alindornow-header .navbar-collapse {
        background-color: #150D2A;
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
        border: 1px solid rgba(255, 184, 0, 0.15);
    }

    .alindornow-header .nav-cta-wrapper {
        margin-top: 15px;
        text-align: center;
    }
}

.alindor-footer {
    background-color: #090514;
    color: #F3E8FF;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 184, 0, 0.15);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.alindor-footer .footer-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.alindor-footer .footer-desc {
    color: #B5A9C2;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.alindor-footer .footer-links li {
    margin-bottom: 0.75rem;
}

.alindor-footer .footer-links a {
    color: #B5A9C2;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.alindor-footer .footer-links a:hover {
    color: #00F0FF;
}

.alindor-footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.alindor-footer .contact-item i {
    color: #FFB800;
    font-size: 1.3rem;
    margin-top: 3px;
}

.alindor-footer .contact-label {
    display: block;
    color: #F3E8FF;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.alindor-footer .contact-value {
    color: #B5A9C2;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.alindor-footer .contact-item a.contact-value:hover {
    color: #00F0FF;
}

.alindor-footer .map-container {
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
}

.alindor-footer .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.alindor-footer .footer-bottom {
    border-top: 1px solid rgba(125, 114, 141, 0.2);
    margin-top: 50px;
    padding-top: 25px;
}

.alindor-footer .footer-copyright {
    color: #7D728D;
    font-size: 0.9rem;
}

.alindor-footer .footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.alindor-footer .footer-bottom-links a {
    color: #7D728D;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.alindor-footer .footer-bottom-links a:hover {
    color: #FFB800;
}

.aladin-detail-page .aladin-detail-hero {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: clamp(80px, 8vw, 120px) 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #090514;
}

.aladin-detail-page .aladin-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 5, 20, 0.95) 0%, rgba(26, 11, 46, 0.85) 50%, rgba(9, 5, 20, 0.95) 100%);
    z-index: 1;
}

.aladin-detail-page .aladin-detail-hero-content {
    position: relative;
    z-index: 2;
}

.aladin-detail-page .hero-badge {
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(255, 184, 0, 0.3);
    color: #FFB800;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.aladin-detail-page .hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #F3E8FF;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.aladin-detail-page .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #B5A9C2;
    font-size: 0.95rem;
}

.aladin-detail-page .hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.aladin-detail-page .hero-meta-item i {
    color: #FFB800;
}

.aladin-detail-page .detail-content-section {
    background-color: #090514;
    padding: 60px 0;
    color: #F3E8FF;
}

.aladin-detail-page .gallery-container {
    margin-bottom: 40px;
}

.aladin-detail-page .gallery-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 184, 0, 0.15);
    padding-bottom: 10px;
}

.aladin-detail-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.aladin-detail-page .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 184, 0, 0.15);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    background-color: #150D2A;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.aladin-detail-page .gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.2);
}

.aladin-detail-page .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.aladin-detail-page .gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.aladin-detail-page .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 5, 20, 0.6);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB800;
    font-size: 1.8rem;
    transition: opacity 0.3s ease;
}

.aladin-detail-page .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.aladin-detail-page .sidebar-card {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
}

.aladin-detail-page .sidebar-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
    padding-bottom: 10px;
}

.aladin-detail-page .spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aladin-detail-page .spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 184, 0, 0.08);
}

.aladin-detail-page .spec-item:last-child {
    border-bottom: none;
}

.aladin-detail-page .spec-label {
    color: #B5A9C2;
    font-size: 0.95rem;
}

.aladin-detail-page .spec-value {
    color: #F3E8FF;
    font-weight: 600;
}

.aladin-detail-page .info-text-block {
    line-height: 1.8;
    color: #B5A9C2;
    margin-bottom: 40px;
}

.aladin-detail-page .info-text-block p {
    margin-bottom: 1.5rem;
}

.aladin-detail-page .lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(9, 5, 20, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.aladin-detail-page .lightbox-modal.active {
    display: flex;
}

.aladin-detail-page .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
}

.aladin-detail-page .lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    border: 2px solid rgba(255, 184, 0, 0.3);
    object-fit: contain;
}

.aladin-detail-page .lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #F3E8FF;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.aladin-detail-page .lightbox-close:hover {
    color: #FFB800;
}

.aladin-detail-page .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(21, 13, 42, 0.8);
    border: 1px solid rgba(255, 184, 0, 0.2);
    color: #F3E8FF;
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.aladin-detail-page .lightbox-nav:hover {
    background: #FFB800;
    color: #090514;
    border-color: #FFB800;
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.4);
}

.aladin-detail-page .lightbox-prev {
    right: -70px;
}

.aladin-detail-page .lightbox-next {
    left: -70px;
}

@media (max-width: 991px) {
    .aladin-detail-page .lightbox-prev {
        right: 10px;
    }

    .aladin-detail-page .lightbox-next {
        left: 10px;
    }

    .aladin-detail-page .lightbox-close {
        top: -40px;
        right: 10px;
    }
}

.aladin-detail-page .comments-section {
    background-color: #0E081F;
    padding: 60px 0;
}

.aladin-detail-page .comments-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255, 184, 0, 0.15);
    padding-bottom: 10px;
}

.aladin-detail-page .comment-card {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.aladin-detail-page .comment-card:hover {
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.15);
}

.aladin-detail-page .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.aladin-detail-page .comment-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aladin-detail-page .avatar-initials {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #090514;
    font-size: 1rem;
}

.aladin-detail-page .bg-gradient-gold {
    background: linear-gradient(135deg, #FFB800 0%, #FF8A00 100%);
}

.aladin-detail-page .bg-gradient-purple {
    background: linear-gradient(135deg, #8A2BE2 0%, #B5A9C2 100%);
    color: #F3E8FF;
}

.aladin-detail-page .user-details {
    display: flex;
    flex-direction: column;
}

.aladin-detail-page .user-name {
    font-weight: 600;
    color: #F3E8FF;
}

.aladin-detail-page .user-badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-top: 3px;
    display: inline-block;
    width: fit-content;
}

.aladin-detail-page .badge-gold {
    background: rgba(255, 184, 0, 0.15);
    color: #FFB800;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.aladin-detail-page .badge-cyan {
    background: rgba(0, 240, 255, 0.15);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.aladin-detail-page .comment-time {
    color: #7D728D;
    font-size: 0.85rem;
}

.aladin-detail-page .comment-body {
    color: #B5A9C2;
    font-size: 0.95rem;
    line-height: 1.6;
}

.aladin-detail-page .comment-footer {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 184, 0, 0.08);
    padding-top: 12px;
}

.aladin-detail-page .action-btn {
    background: transparent;
    border: none;
    color: #B5A9C2;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.aladin-detail-page .action-btn:hover {
    color: #FFB800;
}

.aladin-detail-page .like-btn.active {
    color: #FFB800;
}

.aladin-detail-page .reply-container {
    margin-right: 40px;
    position: relative;
    padding-right: 15px;
}

.aladin-detail-page .reply-thread-line {
    position: absolute;
    top: -20px;
    right: -15px;
    width: 2px;
    height: calc(100% + 20px);
    background-color: rgba(255, 184, 0, 0.15);
}

.aladin-detail-page .reply-comment-item {
    border-color: rgba(138, 43, 226, 0.2);
}

.aladin-detail-page .comment-form-container {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
}

.aladin-detail-page .form-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.aladin-detail-page .form-input-group {
    margin-bottom: 15px;
}

.aladin-detail-page .form-control {
    background-color: #090514;
    border: 1px solid rgba(255, 184, 0, 0.15);
    color: #F3E8FF;
    border-radius: 8px;
    padding: 12px;
}

.aladin-detail-page .form-control:focus {
    background-color: #090514;
    border-color: #FFB800;
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.2);
    color: #F3E8FF;
}

.aladin-detail-page .form-control::placeholder {
    color: #7D728D;
}

.aladin-detail-page .btn-submit-comment {
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: #090514;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px;
    border: none;
    transition: all 0.3s ease;
}

.aladin-detail-page .btn-submit-comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.aladin-detail-page .comment-message {
    display: none;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00F0FF;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .aladin-detail-page .hero-title {
        font-size: 18px !important;
    }

    .aladin-detail-page .gallery-title,
    .aladin-detail-page .comments-title {
        font-size: 16px !important;
    }

    .aladin-detail-page .sidebar-title,
    .aladin-detail-page .form-title {
        font-size: 14px !important;
    }
}

/* ===== PAGE TEMPLATE: game-item ===== */
.alindornow-header {
    background-color: #150D2A;
    border-bottom: 2px solid rgba(255, 184, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    direction: rtl;
}

.alindornow-header.scrolled {
    background-color: #090514;
    border-bottom-color: rgba(255, 184, 0, 0.4);
}

.alindornow-header .brand-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
    margin-left: 12px;
}

.alindornow-header .brand-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #FFB800;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
}

.alindornow-header .navbar-toggler {
    border: 1px solid rgba(255, 184, 0, 0.3);
    color: #FFB800;
    font-size: 1.75rem;
    padding: 4px 8px;
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.alindornow-header .navbar-toggler:focus {
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
    outline: none;
}

.alindornow-header .nav-link {
    color: #B5A9C2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.alindornow-header .nav-link:hover,
.alindornow-header .nav-link.active {
    color: #FFB800;
}

.alindornow-header .btn-nav-cta {
    display: inline-block;
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: #090514;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.alindornow-header .btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.5);
    color: #090514;
}

@media (max-width: 991.98px) {
    .alindornow-header .navbar-collapse {
        background-color: #150D2A;
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
        border: 1px solid rgba(255, 184, 0, 0.15);
    }

    .alindornow-header .nav-cta-wrapper {
        margin-top: 15px;
        text-align: center;
    }
}

.alindor-footer {
    background-color: #090514;
    color: #F3E8FF;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 184, 0, 0.15);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.alindor-footer .footer-title {
    font-family: 'Cinzel', serif;
    color: #FFB800;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.alindor-footer .footer-desc {
    color: #B5A9C2;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.alindor-footer .footer-links li {
    margin-bottom: 0.75rem;
}

.alindor-footer .footer-links a {
    color: #B5A9C2;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.alindor-footer .footer-links a:hover {
    color: #00F0FF;
}

.alindor-footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.alindor-footer .contact-item i {
    color: #FFB800;
    font-size: 1.3rem;
    margin-top: 3px;
}

.alindor-footer .contact-label {
    display: block;
    color: #F3E8FF;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.alindor-footer .contact-value {
    color: #B5A9C2;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.alindor-footer .contact-item a.contact-value:hover {
    color: #00F0FF;
}

.alindor-footer .map-container {
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
}

.alindor-footer .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.alindor-footer .footer-bottom {
    border-top: 1px solid rgba(125, 114, 141, 0.2);
    margin-top: 50px;
    padding-top: 25px;
}

.alindor-footer .footer-copyright {
    color: #7D728D;
    font-size: 0.9rem;
}

.alindor-footer .footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.alindor-footer .footer-bottom-links a {
    color: #7D728D;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.alindor-footer .footer-bottom-links a:hover {
    color: #FFB800;
}

body.alindor-dark-theme {
    background-color: #090514;
    color: #F3E8FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.aladin-detail-page {
    background-color: #090514;
    padding: 60px 0;
}

.aladin-detail-page .aladin-game-player-card {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.aladin-detail-page .aladin-game-ratio-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
}

.aladin-detail-page .aladin-game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.aladin-detail-page .aladin-game-avatar-glow {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #FFB800;
    width: 60px;
    height: 60px;
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.2);
}

.aladin-detail-page .aladin-game-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aladin-detail-page .aladin-game-main-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFB800;
}

.aladin-detail-page h2,
.aladin-detail-page h3,
.aladin-detail-page h4 {
    color: #FFB800;
    font-family: 'Cinzel', serif;
}

.aladin-detail-page .bg-purple-transparent {
    background-color: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.aladin-detail-page .text-accent {
    color: #00F0FF !important;
}

.aladin-detail-page .text-gold {
    color: #FFB800 !important;
}

.aladin-detail-page .text-light-secondary {
    color: #B5A9C2 !important;
}

.aladin-detail-page .text-light-primary {
    color: #F3E8FF !important;
}

.aladin-detail-page .text-light-muted {
    color: #7D728D !important;
}

.aladin-detail-page .border-purple-subtle {
    border-color: rgba(138, 43, 226, 0.2) !important;
}

.aladin-detail-page .border-purple-subtle-light {
    border-color: rgba(138, 43, 226, 0.1) !important;
}

.aladin-detail-page .bg-purple-dark {
    background-color: #0E081F;
}

.aladin-detail-page .aladin-game-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00F0FF;
    display: inline-block;
    box-shadow: 0 0 8px #00F0FF;
}

.aladin-detail-page .aladin-game-status-text {
    font-size: 0.85rem;
    color: #00F0FF;
}

.aladin-detail-page .aladin-btn-primary {
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: #090514;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.aladin-detail-page .aladin-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 184, 0, 0.6);
    color: #090514;
}

.aladin-detail-page .aladin-game-info-card {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
}

.aladin-detail-page .aladin-tab-btn {
    background: transparent;
    border: none;
    color: #B5A9C2;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.aladin-detail-page .aladin-tab-btn:hover {
    color: #FFB800;
}

.aladin-detail-page .aladin-tab-btn.active {
    color: #FFB800;
    border-bottom-color: #FFB800;
}

.aladin-detail-page .instruction-list {
    list-style: none;
    padding: 0;
}

.aladin-detail-page .tip-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(0, 240, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.aladin-detail-page .sidebar-links-list a {
    transition: color 0.3s ease;
}

.aladin-detail-page .sidebar-links-list a:hover {
    color: #00F0FF !important;
}

.aladin-detail-page .comment-write-box {
    background-color: #0E081F;
}

.aladin-detail-page .comment-input-field {
    background-color: #1D123B;
    border: 1px solid rgba(255, 184, 0, 0.25);
    color: #F3E8FF;
    padding: 12px 16px;
    border-radius: 8px;
    width: 100%;
    font-size: 0.95rem;
}

.aladin-detail-page .comment-input-field:focus {
    outline: none;
    border-color: #00F0FF;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.aladin-detail-page .comment-input-field::placeholder {
    color: #7D728D;
    opacity: 1;
}

.aladin-detail-page .aladin-game-ratio-container {
    aspect-ratio: 9 / 16;
    max-width: 560px;
    margin-inline: auto;
}

.aladin-detail-page .aladin-game-ratio-container:fullscreen,
.aladin-detail-page .aladin-game-ratio-container:-webkit-full-screen {
    max-width: none;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto;
}

body.game-theater-open {
    overflow: hidden;
}

.aladin-game-section .game-iframe-wrapper.is-theater-mode,
.game-iframe-section .game-iframe-wrapper.is-theater-mode,
.aladin-detail-page .aladin-game-ratio-container.is-theater-mode {
    position: fixed !important;
    inset: 0;
    z-index: 9999;
    width: 100vw !important;
    height: 100vh !important;
    max-width: none;
    aspect-ratio: auto;
    padding-top: 0 !important;
    border-radius: 0;
    background-color: #000;
}

.aladin-game-section .game-iframe-wrapper.is-theater-mode iframe,
.game-iframe-section .game-iframe-wrapper.is-theater-mode iframe,
.aladin-detail-page .aladin-game-ratio-container.is-theater-mode iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.aladin-detail-page .js-input-rating {
    padding-inline-start: 24px;
    padding-inline-end: 24px;
}

.char-comments-section .js-submit-comment-btn,
.char-comments-section .btn-nav-cta.js-submit-comment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: #090514 !important;
    border: 0;
    border-radius: 50px;
    font-weight: 700;
    min-height: 46px;
    box-shadow: 0 4px 18px rgba(255, 184, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.char-comments-section .js-submit-comment-btn:hover,
.char-comments-section .btn-nav-cta.js-submit-comment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 184, 0, 0.55);
}

.kb-detail-template .kb-sidebar .sidebar-widget {
    background-color: #0E081F;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    padding: 20px;
}

.kb-detail-template .kb-sidebar .sidebar-widget table,
.kb-detail-template .kb-sidebar .sidebar-widget tr,
.kb-detail-template .kb-sidebar .sidebar-widget td {
    --bs-table-bg: transparent;
    --bs-table-color: #B5A9C2;
    background-color: transparent !important;
    color: #B5A9C2 !important;
}

.kb-detail-template .kb-sidebar .sidebar-widget td.fw-bold {
    color: #F3E8FF !important;
}

.disclaimer-content-block > .container,
.terms-content-section > .container,
.alindor-privacy > .container {
    max-width: 1040px;
    margin-inline: auto;
    padding-inline: 24px;
}

.terms-content-section .terms-nav-wrapper,
.alindor-privacy .privacy-sidebar {
    display: none !important;
}

.terms-content-section .row,
.alindor-privacy .row {
    justify-content: center;
}

.terms-content-section .col-lg-10,
.alindor-privacy .col-lg-8 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 960px;
}

.terms-content-section .terms-articles,
.alindor-privacy .privacy-content-wrapper {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(138, 43, 226, 0.15);
    padding: 3rem;
}

.terms-content-section .terms-card {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.terms-content-section .terms-card:last-child {
    border-bottom: 0;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.terms-content-section .terms-card:hover {
    transform: none;
    border-color: rgba(255, 184, 0, 0.15);
    box-shadow: none;
}

.terms-content-section .icon-box {
    width: 44px;
    height: 44px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(9, 5, 20, 0) 70%);
    border: 1px solid #8A2BE2;
}

.terms-content-section .text-primary,
.alindor-privacy .pane-title,
.alindor-privacy .sub-title {
    color: #FFB800 !important;
    font-family: 'Cinzel', serif;
}

.terms-content-section .text-secondary,
.alindor-privacy .pane-text,
.alindor-privacy .custom-list li,
.alindor-privacy .cookie-card p,
.alindor-privacy .contact-card p {
    color: #B5A9C2 !important;
    line-height: 1.8;
    font-size: 1.05rem;
}

.terms-content-section ul,
.alindor-privacy .custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-content-section ul li,
.alindor-privacy .custom-list li {
    position: relative;
    padding-inline-start: 28px;
    margin-bottom: 10px;
}

.terms-content-section ul li::before,
.alindor-privacy .custom-list li::before {
    content: "\ea41";
    font-family: "boxicons";
    position: absolute;
    inset-inline-start: 0;
    top: 2px;
    color: #00F0FF;
}

.alindor-privacy .custom-list li > i {
    display: none;
}

.alindor-privacy .privacy-pane,
.alindor-privacy .privacy-pane.d-none {
    display: block !important;
    opacity: 1;
    transform: none;
    margin-bottom: 2rem;
}

.alindor-privacy .privacy-pane:last-child {
    margin-bottom: 0;
}

.alindor-privacy .pane-title {
    border-bottom: 1px solid rgba(255, 184, 0, 0.2);
    padding-bottom: 15px;
    margin-bottom: 1.25rem !important;
}

.alindor-privacy .info-alert,
.alindor-privacy .cookie-card,
.alindor-privacy .contact-card {
    background-color: #0E081F;
    border: 1px solid rgba(255, 184, 0, 0.15);
}

@media (max-width: 767px) {
    .terms-content-section .terms-articles,
    .alindor-privacy .privacy-content-wrapper {
        padding: 1.5rem;
    }
}

.aladin-detail-page .bg-success-transparent {
    background-color: rgba(25, 135, 84, 0.15);
}

.aladin-detail-page .border-success-subtle {
    border-color: rgba(25, 135, 84, 0.3) !important;
}

.aladin-detail-page .comment-card {
    background-color: #150D2A;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    color: #F3E8FF;
}

.aladin-detail-page .comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.aladin-detail-page .comment-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aladin-detail-page .avatar-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #090514;
}

.aladin-detail-page .bg-gradient-gold {
    background: linear-gradient(135deg, #FFB800 0%, #FF8A00 100%);
}

.aladin-detail-page .bg-gradient-purple {
    background: linear-gradient(135deg, #8A2BE2 0%, #00F0FF 100%);
}

.aladin-detail-page .user-details {
    display: flex;
    flex-direction: column;
}

.aladin-detail-page .user-name {
    font-weight: 600;
    color: #F3E8FF;
}

.aladin-detail-page .user-badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 2px;
    display: inline-block;
    width: max-content;
}

.aladin-detail-page .badge-gold {
    background-color: rgba(255, 184, 0, 0.15);
    color: #FFB800;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.aladin-detail-page .badge-cyan {
    background-color: rgba(0, 240, 255, 0.15);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.aladin-detail-page .comment-time {
    color: #7D728D;
    font-size: 0.85rem;
}

.aladin-detail-page .comment-body {
    color: #B5A9C2;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.aladin-detail-page .comment-footer {
    display: flex;
    gap: 15px;
    border-top: 1px solid rgba(255, 184, 0, 0.1);
    padding-top: 10px;
}

.aladin-detail-page .action-btn {
    background: none;
    border: none;
    color: #B5A9C2;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 0;
}

.aladin-detail-page .action-btn:hover {
    color: #FFB800;
}

.aladin-detail-page .action-btn.active {
    color: #FFB800;
}

.aladin-detail-page .reply-container {
    position: relative;
    padding-right: 40px;
    margin-top: -10px;
    margin-bottom: 20px;
}

.aladin-detail-page .reply-thread-line {
    position: absolute;
    right: 20px;
    top: -20px;
    bottom: 20px;
    width: 2px;
    background-color: rgba(138, 43, 226, 0.3);
}

.aladin-detail-page .reply-comment-item {
    background-color: #1a1035;
    border: 1px solid rgba(138, 43, 226, 0.25);
}

.aladin-detail-page .aladin-game-player-wrapper:fullscreen {
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.aladin-detail-page .aladin-game-player-wrapper:fullscreen iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.aladin-detail-page .aladin-game-player-wrapper:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.aladin-detail-page .aladin-game-player-wrapper:-webkit-full-screen iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
}

@media (max-width: 767.98px) {
    .aladin-detail-page .aladin-game-main-title {
        font-size: 1.2rem;
    }

    .aladin-detail-page .aladin-tab-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}
