:root {
    --primary-dark: #0F172A;
    --secondary-dark: #111827;
    --blue: #1E3A8A;
    --gold: #D4AF37;
    --gold-dark: #b89022;
    --white: #FFFFFF;
    --gray-light: #E5E7EB;
    --gray-muted: #94A3B8;
    --green: #10B981;
    --danger: #EF4444;
    --border-soft: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(17, 24, 39, 0.72);
    --card-bg-strong: rgba(17, 24, 39, 0.92);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.22);
    --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.28);
    --radius-xl: 24px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(30, 58, 138, 0.25), transparent 28%),
        radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.10), transparent 20%),
        var(--primary-dark);
    color: var(--white);
    font-family: 'Inter', 'Cairo', sans-serif;
    line-height: 1.65;
}

body.lang-ar {
    font-family: 'Cairo', 'Inter', sans-serif;
}

body.rtl {
    text-align: right;
}

body.ltr {
    text-align: left;
}

.pwa-install-bar {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transition);
}

.pwa-install-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.pwa-install-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: var(--shadow-soft);
}

.pwa-install-bar__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pwa-install-bar__text strong {
    color: var(--white);
    font-size: 0.98rem;
}

.pwa-install-bar__text span {
    color: var(--gray-muted);
    font-size: 0.9rem;
}

.pwa-install-bar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pwa-install-close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.pwa-install-close:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.install-app-btn {
    display: inline-flex;
}

.pwa-install-inline-note {
    position: fixed;
    left: 50%;
    bottom: 96px;
    transform: translateX(-50%) translateY(20px);
    z-index: 2100;
    background: rgba(15, 23, 42, 0.96);
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transition: var(--transition);
}

.pwa-install-inline-note.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 576px) {
    .pwa-install-bar__content {
        flex-direction: column;
        align-items: stretch;
    }

    .pwa-install-bar__actions {
        justify-content: space-between;
    }
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: var(--transition);
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

main {
    position: relative;
    z-index: 1;
}

.container,
.container-fluid {
    position: relative;
    z-index: 2;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: var(--white);
}

p {
    margin-bottom: 1rem;
}

.text-muted-custom {
    color: var(--gray-muted) !important;
}

/* Navbar */
.main-navbar {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 12px 18px;
    z-index: 1030;
}

.navbar-brand {
    font-weight: 700;
    color: var(--white) !important;
    font-size: 1.1rem;
    letter-spacing: 0.2px;
}

.brand-icon {
    font-size: 1.4rem;
}

.brand-name {
    color: var(--gold);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.nav-link {
    color: var(--gray-light) !important;
    font-weight: 500;
    transition: var(--transition);
    padding-left: 0.9rem !important;
    padding-right: 0.9rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(30, 58, 138, 0.32);
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.28);
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.lang-toggle:hover {
    color: var(--primary-dark);
    background: var(--gold);
    border-color: var(--gold);
}

.btn-nav-login,
.btn-nav-register,
.btn-primary-custom,
.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: 12px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-nav-login,
.btn-nav-register {
    padding: 10px 16px;
}

.btn-nav-login {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
}

.btn-nav-login:hover {
    color: var(--primary-dark);
    background: var(--gold);
    border-color: var(--gold);
}

.btn-nav-register,
.btn-primary-custom {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-dark);
    padding: 12px 22px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.btn-nav-register:hover,
.btn-primary-custom:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary-custom {
    background: rgba(30, 58, 138, 0.16);
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.22);
    padding: 12px 22px;
}

.btn-secondary-custom:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.4);
    background: #1f2937;
}

.dropdown-menu {
    background: var(--secondary-dark);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.dropdown-item {
    color: var(--gray-light);
    padding: 10px 14px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(30, 58, 138, 0.18);
    color: var(--gold);
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.08);
}

/* Hero */
.hero {
    padding: 90px 0 72px;
}

.hero-content h1 {
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-content p {
    color: var(--gray-light);
    font-size: 1.05rem;
    max-width: 650px;
    margin-bottom: 1.6rem;
}

/* Sections */
section {
    padding: 72px 0;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

/* Premium cards */
.card-premium {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.14);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
}

.card-premium:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-hover);
}

.card-premium h4,
.card-premium h5 {
    margin-bottom: 0.7rem;
}

/* Stats */
.stats-section {
    padding: 40px 0;
}

/* Interface refresh */
.main-navbar {
    padding: 14px 0;
    background: rgba(11, 18, 32, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), #f3d76a);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 10px 22px rgba(212, 175, 55, 0.22);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-copy strong {
    color: var(--white);
    font-size: 1.02rem;
}

.brand-copy small {
    color: var(--gray-muted);
    font-size: 0.76rem;
}

.nav-utility-item {
    margin-top: 8px;
}

.nav-user-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-nav-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-weight: 700;
}

.btn-nav-soft:hover {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.45);
}

.site-backbar {
    padding: 14px 0 0;
}

.site-back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 999px;
    background: rgba(11, 18, 32, 0.82);
    color: #f8fafc;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
    font-weight: 700;
}

.site-back-button:hover {
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--gold), #e7c85c);
    border-color: transparent;
}

.site-back-button__icon {
    display: inline-flex;
    font-size: 1rem;
    line-height: 1;
}

.home-feature-grid .card-premium,
.home-flow-grid .card-premium,
.home-why-grid .card-premium {
    background: rgba(17, 24, 39, 0.78);
}

.support-highlight {
    position: relative;
    overflow: hidden;
}

.support-highlight::after {
    content: "";
    position: absolute;
    inset: auto -30px -40px auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 68%);
    pointer-events: none;
}

.support-mini-list {
    display: grid;
    gap: 12px;
}

.support-mini-list__item {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.support-mini-list__item strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
}

.site-footer {
    margin-top: 72px;
    background:
        radial-gradient(circle at top right, rgba(30, 58, 138, 0.2), transparent 26%),
        linear-gradient(180deg, #091120 0%, #0b1220 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
    gap: 24px;
    padding: 36px 0 26px;
}

.site-footer__brand-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.site-footer__mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), #f3d76a);
    color: var(--primary-dark);
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.18);
}

.site-footer__brand h5,
.site-footer__links h6,
.site-footer__contact h6 {
    margin: 0 0 12px;
    color: var(--gold);
}

.site-footer__brand p {
    margin: 0;
    color: #cbd5e1;
}

.site-footer__social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.site-footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
}

.site-footer__social a:hover {
    color: var(--primary-dark);
    background: var(--gold);
    border-color: var(--gold);
}

.site-footer__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer__chips a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 999px;
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.94rem;
}

.site-footer__chips a:hover {
    color: var(--primary-dark);
    background: var(--gold);
    border-color: var(--gold);
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__contact a {
    color: #e5e7eb;
}

.site-footer__contact a:hover {
    color: var(--gold);
}

.site-footer__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.18);
    color: #d1fae5;
    border: 1px solid rgba(16, 185, 129, 0.25);
    font-size: 0.88rem;
    font-weight: 700;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
    text-align: center;
    color: #94a3b8;
    font-size: 0.94rem;
}

.legal-page-hero {
    padding: 78px 0 42px;
}

.legal-page-hero__wrap {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.legal-page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.14);
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 16px;
}

.legal-page-hero p {
    color: #cbd5e1;
    max-width: 760px;
    margin: 0 auto;
}

.legal-sheet {
    max-width: 980px;
    margin: 0 auto;
}

.legal-sheet .card-premium {
    background: rgba(15, 23, 42, 0.88);
    padding: 28px;
}

.legal-sheet h3 {
    color: var(--gold);
    font-size: 1.28rem;
    margin-top: 0;
}

.legal-sheet p,
.legal-sheet li {
    color: #d1d5db;
    line-height: 1.95;
}

.legal-sheet ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.legal-sheet li {
    position: relative;
    padding-inline-start: 22px;
    margin-bottom: 10px;
}

.legal-sheet li::before {
    content: "•";
    position: absolute;
    inset-inline-start: 0;
    color: var(--gold);
}

@media (max-width: 991.98px) {
    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .main-navbar .navbar-collapse {
        margin-top: 14px;
        padding: 16px;
        border-radius: 18px;
        background: rgba(15, 23, 42, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-utility-item {
        width: 100%;
        margin-top: 12px;
    }

    .btn-nav-login,
    .btn-nav-register,
    .btn-nav-soft,
    .lang-toggle {
        width: 100%;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .site-footer__chips {
        gap: 8px;
    }

    .site-footer__chips a {
        width: 100%;
        justify-content: flex-start;
    }

    body.rtl .site-footer__chips a {
        justify-content: flex-end;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.55rem;
}

.stat-label {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #0b1220;
    color: var(--gray-light);
    margin-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer-main {
    padding: 34px 0 18px;
}

.footer-title {
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links--grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

.footer-links--wide {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px 14px;
}

.footer-links--grid li {
    margin-bottom: 0;
}

.footer-links a,
.footer-contact a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-brand-text {
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 14px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.2);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.social-link:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
    text-align: center;
    color: var(--gray-muted);
    font-size: 0.95rem;
}

.footer-contact--inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
}

.footer-contact--inline li {
    margin-bottom: 0;
    color: var(--gray-light);
}

.footer-contact--inline strong {
    color: var(--white);
    margin-inline-end: 6px;
}

/* Alerts */
.alert {
    border-radius: 14px;
    border: none;
    box-shadow: var(--shadow-soft);
}

.site-backbar {
    padding: 12px 0 0;
}

.site-back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 58, 138, 0.82));
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.12);
}

.site-back-button:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(15, 23, 42, 0.96));
    color: var(--gold);
    transform: translateY(-1px);
}

.site-back-button__icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    line-height: 1;
    color: var(--gold);
}

.site-back-button:hover .site-back-button__icon {
    background: rgba(212, 175, 55, 0.12);
}

/* Forms */
.form-control,
.form-select,
textarea.form-control {
    background: rgba(17, 24, 39, 0.78);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.8rem 1rem;
}

.form-control::placeholder,
textarea.form-control::placeholder {
    color: #9ca3af;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
    background: rgba(17, 24, 39, 0.9);
    color: var(--white);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.12);
}

label,
.form-label {
    color: var(--gray-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.btn {
    transition: var(--transition);
}

/* Mobile */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding-top: 14px;
        gap: 10px;
        align-items: stretch !important;
    }

    .btn-nav-login,
    .btn-nav-register,
    .lang-toggle {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding-top: 72px;
    }

    section {
        padding: 56px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .footer-links--grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px 14px;
    }

    .footer-links--wide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .main-navbar {
        padding: 10px 12px;
    }

    .site-backbar {
        padding-top: 10px;
    }

    .site-back-button {
        width: auto;
        min-width: 108px;
        justify-content: center;
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .card-premium {
        padding: 1.1rem;
    }

    .footer-main {
        padding: 45px 0 25px;
    }

    .footer-links--grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer-links--wide {
        grid-template-columns: 1fr 1fr;
    }

    .footer-contact--inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .stat-number {
        font-size: 1.6rem;
    }
}
.course-thumb {
    overflow: hidden;
}

.course-thumb span {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}
.live-thumb {
    overflow: hidden;
}

.live-thumb span {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}
.library-thumb {
    overflow: hidden;
}

.library-thumb span {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}
.community-post-card {
    overflow: hidden;
}

.community-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30,58,138,0.35), rgba(212,175,55,0.30));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.community-category-badge {
    background: rgba(212,175,55,0.18);
    color: #fff;
    padding: 8px 14px;
}

.community-actions {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px;
}

.btn-sm-custom {
    padding: 10px 16px;
    font-size: 0.92rem;
}
.install-app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.26);
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1;
    white-space: nowrap;
    min-width: 118px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}

.install-app-btn:hover {
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--gold), #e6c457);
    border-color: transparent;
    transform: translateY(-1px);
}

.nav-utility-item {
    margin-top: 0;
}

.main-navbar .navbar-nav {
    gap: 2px;
}

.main-navbar .nav-link {
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .install-app-btn {
        width: 100%;
        min-width: 0;
    }
}

