/* ==========================================
   LuckyBear Casino — Main Styles
   Mobile-first, modern redesign
   ========================================== */

:root {
    --primary:      #ff6b35;
    --secondary:    #ff9800;
    --accent:       #ffc107;
    --bg:           #080c1f;
    --bg-2:         #0f1430;
    --bg-3:         #161d3a;
    --bg-4:         #1e2649;
    --text:         #ffffff;
    --text-muted:   #8892b0;
    --green:        #4caf50;
    --grad:         linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    --grad-rev:     linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
    --radius:       12px;
    --radius-lg:    20px;
    --header-h:     68px;
    --ease:         all 0.3s ease;
    --shadow-glow:  0 0 30px rgba(255, 107, 53, 0.35);
}

/* ==========================================
   BASE
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ==========================================
   HEADER
   ========================================== */
.header-main {
    background: rgba(8, 12, 31, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1100;
    height: var(--header-h);
    display: flex;
    align-items: center;
}

.navbar { padding: 0; width: 100%; }

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--ease);
}
.logo-img:hover { transform: scale(1.04); }

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    transition: var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent);
    background: rgba(255, 193, 7, 0.08);
}

.btn-lang {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: var(--ease);
}
.btn-lang:hover { border-color: var(--primary); color: var(--text); background: rgba(255,107,53,0.1); }

.btn-login {
    background: var(--grad);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.5rem 1.3rem;
    border-radius: 10px;
    transition: var(--ease);
    box-shadow: 0 4px 16px rgba(255,107,53,0.35);
    white-space: nowrap;
}
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255,107,53,0.55);
    color: #fff;
}

.navbar-toggler { color: rgba(255,255,255,0.7); }
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(8,12,31,0.98);
        border-radius: 0 0 var(--radius) var(--radius);
        padding: 1rem 1.25rem;
        border: 1px solid rgba(255,255,255,0.06);
        border-top: none;
        z-index: 999;
    }
    .navbar-nav .nav-link { font-size: 0.95rem; padding: 0.65rem 1rem; }
}

/* ==========================================
   MAIN CONTENT
   ========================================== */
.main-content {
    margin-top: var(--header-h);
    padding-bottom: 70px; /* space for mobile bottom nav */
}

@media (min-width: 992px) {
    .main-content { padding-bottom: 0; }
}

/* ==========================================
   SECTION TITLES
   ========================================== */
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-title h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ==========================================
   HERO SWIPER
   ========================================== */
.hero-section { position: relative; }

.hero-swiper {
    width: 100%;
    height: calc(92vh - var(--header-h));
    max-height: 720px;
    min-height: 420px;
}

.hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transform: scale(1.06);
    transition: transform 7s ease;
    will-change: transform;
}
.swiper-slide-active .slide-bg { transform: scale(1); }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(8, 12, 31, 0.88) 0%,
        rgba(8, 12, 31, 0.55) 55%,
        rgba(8, 12, 31, 0.15) 100%
    );
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    padding-bottom: 3rem;
}

.slide-text {
    max-width: 580px;
    animation: slideUp 0.7s ease both;
}

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

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 107, 53, 0.18);
    border: 1px solid rgba(255, 107, 53, 0.45);
    color: #ff9800;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
}

.slide-title {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.6);
    letter-spacing: -1px;
}

.slide-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.82);
    margin-bottom: 2rem;
    font-weight: 400;
}
.slide-subtitle strong { color: var(--accent); font-weight: 700; }

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    background: var(--grad);
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(255,107,53,0.5), 0 0 0 0 rgba(255,107,53,0);
    transition: var(--ease);
    cursor: pointer;
}
.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,107,53,0.7);
    color: #fff;
}

/* Swiper navigation */
.hero-prev, .hero-next {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    color: #fff;
    transition: var(--ease);
}
.hero-prev:hover, .hero-next:hover { background: rgba(255,107,53,0.5); }
.hero-prev::after, .hero-next::after { font-size: 1rem; font-weight: 900; }

.hero-pagination { bottom: 20px !important; }
.hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: var(--ease);
}
.hero-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .hero-swiper { height: 62vh; min-height: 320px; max-height: 500px; }
    .hero-prev, .hero-next { display: none; }
    .slide-content { align-items: flex-end; padding-bottom: 4rem; }
    .slide-overlay {
        background: linear-gradient(
            to top,
            rgba(8,12,31,0.92) 0%,
            rgba(8,12,31,0.5) 50%,
            rgba(8,12,31,0.1) 100%
        );
    }
    .slide-text { text-align: center; max-width: 100%; }
    .slide-badge { margin-left: auto; margin-right: auto; }
    .btn-hero-cta { width: 100%; justify-content: center; font-size: 0.95rem; padding: 0.8rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero-swiper { height: 58vh; min-height: 280px; }
    .slide-title { font-size: 2rem; letter-spacing: -0.5px; }
}

/* ==========================================
   MIRROR BANNER
   ========================================== */
.mirror-banner {
    background: linear-gradient(135deg, rgba(76,175,80,0.08) 0%, rgba(255,107,53,0.08) 100%);
    border-top: 1px solid rgba(76,175,80,0.25);
    border-bottom: 1px solid rgba(255,107,53,0.15);
    padding: 1rem 0;
}

.mirror-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.mirror-badge-block {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 1px;
    color: #fff;
    white-space: nowrap;
}
.mirror-badge-block i {
    font-size: 1.6rem;
    color: var(--green);
    filter: drop-shadow(0 0 8px rgba(76,175,80,0.6));
}

.mirror-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.mirror-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
}
.mirror-stat i { color: var(--primary); font-size: 0.9rem; }

@media (max-width: 768px) {
    .mirror-inner { flex-direction: column; align-items: flex-start; }
    .mirror-stats { gap: 0.8rem; }
    .mirror-stat { font-size: 0.78rem; }
}

/* ==========================================
   BONUS CARDS
   ========================================== */
.bonus-cards { padding: 2.5rem 0; }

.bonus-card {
    background: var(--bg-2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.bonus-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(255,107,53,0.12), transparent 70%);
    border-radius: 50%;
    transition: var(--ease);
}
.bonus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,107,53,0.4);
    box-shadow: 0 12px 40px rgba(255,107,53,0.2);
}
.bonus-card:hover::before { transform: scale(1.3); }

.bonus-icon {
    font-size: 3rem;
    color: var(--accent);
    min-width: 64px;
    text-align: center;
    filter: drop-shadow(0 0 12px rgba(255,193,7,0.5));
}

.bonus-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.4rem;
}
.bonus-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}
.bonus-content .highlight {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.1rem;
}

.btn-bonus {
    background: var(--grad);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    transition: var(--ease);
    letter-spacing: 0.3px;
}
.btn-bonus:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(255,107,53,0.5); color: #fff; }

.clickable-card { user-select: none; }
.clickable-card:active { transform: scale(0.98); }

@media (max-width: 575px) {
    .bonus-card { flex-direction: column; text-align: center; padding: 1.5rem; }
    .bonus-icon { min-width: auto; }
    .btn-bonus { width: 100%; }
}

/* ==========================================
   GAME CATEGORIES
   ========================================== */
.game-categories { padding: 3rem 0; }

/* Scrollable tabs */
.game-tabs-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 2rem;
}
.game-tabs-wrap::-webkit-scrollbar { display: none; }

.game-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    background: var(--bg-2);
    border-radius: var(--radius);
    padding: 0.6rem;
    width: max-content;
    min-width: 100%;
}

.game-tabs .nav-link {
    background: transparent;
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--text-muted);
    padding: 0.7rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    transition: var(--ease);
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    min-width: 70px;
}
.tab-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    opacity: 0.5;
    transition: var(--ease);
}

/* Desktop — tabs centered & bigger */
@media (min-width: 992px) {
    .game-tabs {
        width: 100%;
        justify-content: center;
    }
    .game-tabs .nav-link {
        padding: 1.1rem 2rem;
        min-width: 110px;
        font-size: 0.88rem;
    }
    .tab-icon {
        width: 48px;
        height: 48px;
    }
}
.game-tabs .nav-link:hover,
.game-tabs .nav-link.active {
    background: rgba(255,107,53,0.1);
    border-color: rgba(255,107,53,0.4);
    color: var(--accent);
}
.game-tabs .nav-link.active .tab-icon,
.game-tabs .nav-link:hover .tab-icon { opacity: 1; }

/* Section header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.section-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
}
.btn-more {
    background: transparent;
    border: 2px solid rgba(255,107,53,0.5);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: var(--ease);
    letter-spacing: 0.3px;
}
.btn-more:hover { background: var(--grad); color: #fff; border-color: transparent; }

/* Game grid — CSS Grid, mobile-first */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}
@media (min-width: 480px)  { .game-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .game-grid { grid-template-columns: repeat(4, 1fr); gap: 0.9rem; } }
@media (min-width: 1200px) { .game-grid { grid-template-columns: repeat(6, 1fr); } }

/* Game card */
.game-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--ease);
    background: var(--bg-3);
}
.game-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--ease);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-card:hover img { transform: scale(1.08); }
.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

/* Touch devices — always show overlay */
@media (hover: none) {
    .game-overlay { opacity: 0; }
    .game-card:active .game-overlay { opacity: 1; }
}

.btn-play {
    background: var(--grad);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
}

.game-info {
    padding: 0.6rem 0.75rem;
    background: var(--bg-3);
}
.game-info h5 {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================
   SEO SECTION
   ========================================== */
.seo-section {
    padding: 4rem 0;
    background: var(--bg-2);
}

.seo-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) { .seo-features { grid-template-columns: repeat(4, 1fr); } }

.seo-feature {
    background: var(--bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    transition: var(--ease);
}
.seo-feature:hover {
    border-color: rgba(255,107,53,0.35);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255,107,53,0.12);
}
.seo-feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.9rem;
    filter: drop-shadow(0 0 8px rgba(255,107,53,0.4));
}
.seo-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.6rem;
}
.seo-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 479px) {
    .seo-features { grid-template-columns: 1fr; }
    .seo-feature { padding: 1.3rem; }
}

/* Stats row */
.seo-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: var(--bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
}
@media (max-width: 480px) {
    .seo-stats { grid-template-columns: repeat(2, 1fr); padding: 1.5rem 1rem; }
}

.seo-stat { text-align: center; }
.seo-stat-num {
    display: block;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}
.seo-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==========================================
   PROVIDERS
   ========================================== */
.providers-section {
    padding: 4rem 0;
    background: var(--bg);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
}
@media (min-width: 768px) { .providers-grid { grid-template-columns: repeat(8, 1fr); } }
@media (max-width: 479px) { .providers-grid { grid-template-columns: repeat(3, 1fr); } }

.provider-item {
    background: var(--bg-2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 1.1rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ease);
}
.provider-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255,107,53,0.4);
    box-shadow: 0 8px 24px rgba(255,107,53,0.15);
}
.provider-item img {
    height: 36px;
    width: 100%;
    object-fit: contain;
    filter: brightness(0.65) grayscale(0.3);
    transition: var(--ease);
}
.provider-item:hover img { filter: brightness(1) grayscale(0); }

/* ==========================================
   FAQ
   ========================================== */
.faq-section { padding: 4rem 0; background: var(--bg-2); }

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--bg-3);
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.1rem 1.5rem;
    border: none;
    border-radius: var(--radius) !important;
}
.accordion-button:not(.collapsed) {
    background: var(--bg-4);
    color: var(--accent);
    box-shadow: none;
}
.accordion-button::after { filter: brightness(0) invert(1); }
.accordion-button:focus { box-shadow: none; }

.accordion-body {
    background: var(--bg);
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer-main {
    background: var(--bg-2);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-logo { height: 38px; width: auto; }

.footer-mirror-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76,175,80,0.12);
    border: 1px solid rgba(76,175,80,0.3);
    color: var(--green);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.footer-main h5 {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
}

.footer-links { padding: 0; list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--ease);
}
.footer-links a:hover { color: var(--accent); }

.social-links { display: flex; gap: 0.75rem; }
.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--ease);
}
.social-link:hover {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.footer-divider { border-color: rgba(255,255,255,0.07); margin-top: 2.5rem; }

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

/* ==========================================
   MOBILE BOTTOM NAV
   ========================================== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 35, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: flex-end;
    z-index: 1050;
    padding: 0.4rem 0 max(0.4rem, env(safe-area-inset-bottom));
    height: 64px;
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.18rem;
    padding: 0.3rem 0;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}
.mobile-nav-item i { font-size: 1.25rem; line-height: 1; }
.mobile-nav-item.active,
.mobile-nav-item:hover { color: var(--accent); }

.mobile-nav-center {
    position: relative;
    flex: 1.2;
}
.mobile-nav-center-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255,107,53,0.6), 0 4px 16px rgba(0,0,0,0.4);
    margin-bottom: 2px;
    margin-top: -16px;
    transition: var(--ease);
}
.mobile-nav-center-btn i { font-size: 1.5rem; color: #fff; }
.mobile-nav-center:hover .mobile-nav-center-btn {
    transform: scale(1.1);
    box-shadow: 0 0 28px rgba(255,107,53,0.8);
}

/* ==========================================
   MODAL
   ========================================== */
.modal-content {
    background: var(--bg-2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    color: var(--text);
}
.modal-header { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.2rem 1.5rem; }
.modal-body { padding: 1.5rem; }
.modal-title { font-weight: 700; }

.form-label { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.4rem; }
.form-control {
    background: var(--bg);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text);
    border-radius: var(--radius);
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
}
.form-control:focus {
    background: var(--bg);
    border-color: var(--primary);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.2);
}
.form-control::placeholder { color: rgba(255,255,255,0.25); }

.btn-close { filter: brightness(0) invert(1); opacity: 0.6; }
.btn-close:hover { opacity: 1; }

.btn-outline-light {
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    border-radius: var(--radius);
    padding: 0.6rem;
    transition: var(--ease);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--primary);
    color: var(--accent);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.55s ease-out both; }

/* Section reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
