/**
 * Lumière Mystique Theme — kasamba.angelsfucked.com
 * Colors: #C026D3 (Fuchsia) + #080C18 (Ebony) + #DAA520 (Gold) + #10D9A8 (Seafoam)
 * Fonts: Josefin Sans (headings) + Inter (body)
 */

/* =========================================================
   GLOBAL BASE
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--lm-dark);
    color: var(--lm-text);
    font-family: var(--font-main);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--lm-dark); }
::-webkit-scrollbar-thumb { background: rgba(192,38,211,0.4); border-radius: 3px; }
::selection { background: var(--lm-primary); color: #fff; }
a { color: inherit; text-decoration: none; }

.lm-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section label */
.lm-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lm-teal);
    margin-bottom: 1rem;
}
.lm-label::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--lm-primary), var(--lm-teal));
    border-radius: 2px;
}

/* =========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================= */

.lm-reveal, .lm-reveal-left, .lm-reveal-right, .lm-reveal-up, .lm-reveal-scale {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.lm-reveal         { transform: translateY(30px); }
.lm-reveal-left    { transform: translateX(-40px); }
.lm-reveal-right   { transform: translateX(40px); }
.lm-reveal-up      { transform: translateY(-20px); }
.lm-reveal-scale   { transform: scale(0.92); }

.lm-reveal.lm-visible,
.lm-reveal-left.lm-visible,
.lm-reveal-right.lm-visible,
.lm-reveal-up.lm-visible,
.lm-reveal-scale.lm-visible {
    opacity: 1;
    transform: none;
}

/* =========================================================
   TWO-TIER HEADER
   ========================================================= */

/* Top bar */
.lm-topbar {
    height: var(--topbar-height);
    background: linear-gradient(90deg, #6B0070 0%, var(--lm-primary) 50%, #6B0070 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 350;
}
.lm-topbar-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: lm-topbar-scroll 35s linear infinite;
    will-change: transform;
}
.lm-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}
.lm-topbar-item a { color: var(--lm-gold); }
.lm-topbar-dot {
    width: 4px; height: 4px;
    background: var(--lm-gold);
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes lm-topbar-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Main header bar */
.lm-header {
    height: var(--nav-height);
    background: rgba(8, 12, 24, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(192,38,211,0.2);
    position: sticky;
    top: var(--topbar-height);
    z-index: var(--z-fixed);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}
.lm-header.scrolled {
    background: rgba(8, 12, 24, 0.98);
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    border-bottom-color: rgba(192,38,211,0.3);
}
.lm-header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.lm-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}
.lm-logo img { width: 36px; height: 36px; }
.lm-logo-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--lm-text);
}
.lm-logo-text span { color: var(--lm-primary); }

/* Desktop nav */
.lm-nav {
    display: flex;
    align-items: center;
    gap: 0;
}
.lm-nav-item {
    position: relative;
}
.lm-nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lm-text-dim);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast);
}
.lm-nav-link:hover, .lm-nav-link.active { color: var(--lm-teal); }
.lm-nav-link svg { width: 12px; height: 12px; transition: transform var(--transition-fast); flex-shrink: 0; }
.lm-nav-item:hover .lm-nav-link svg { transform: rotate(180deg); }

.lm-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #0D1127;
    border: 1px solid rgba(192,38,211,0.25);
    border-radius: var(--radius-lg);
    padding: 0.75rem 0;
    padding-top: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(192,38,211,0.1);
    z-index: var(--z-dropdown);
}
.lm-nav-item:hover .lm-nav-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.lm-nav-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
    color: var(--lm-text-muted);
    transition: color var(--transition-fast), background var(--transition-fast);
}
.lm-nav-dropdown-link:hover, .lm-nav-dropdown-link.active {
    color: var(--lm-teal);
    background: rgba(16,217,168,0.06);
}
.lm-nav-dropdown-link small {
    font-size: 0.72rem;
    color: rgba(240,235,232,0.35);
}

/* CTA */
.lm-header-cta {
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
    flex-shrink: 0;
}
.lm-header-cta:hover {
    box-shadow: var(--shadow-fuchsia);
    transform: translateY(-1px);
}

/* Burger */
.lm-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.4rem;
    cursor: pointer;
    background: none;
    border: none;
}
.lm-burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--lm-text);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* Mobile nav */
.lm-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 290;
}
.lm-mobile-overlay.active { display: block; }
.lm-mobile-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100%;
    background: #0A0E1E;
    border-left: 1px solid rgba(192,38,211,0.2);
    z-index: 300;
    overflow-y: auto;
    transition: right var(--transition-slow);
    display: flex;
    flex-direction: column;
}
.lm-mobile-nav.active { right: 0; }
.lm-mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(192,38,211,0.15);
}
.lm-mobile-nav-header-logo {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--lm-text);
}
.lm-mobile-nav-close {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(192,38,211,0.1);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--lm-text);
}
.lm-mobile-nav-close svg { width: 16px; height: 16px; }
.lm-mobile-nav-links { padding: 1rem 0; }
.lm-mobile-nav-item { border-bottom: 1px solid rgba(255,255,255,0.04); }
.lm-mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lm-text-dim);
    transition: color var(--transition-fast);
}
.lm-mobile-nav-link:hover, .lm-mobile-nav-link.active { color: var(--lm-teal); }
.lm-mobile-nav-link svg { width: 14px; height: 14px; transition: transform var(--transition-fast); }
.lm-mobile-nav-item.open .lm-mobile-nav-link svg { transform: rotate(180deg); }
.lm-mobile-nav-dropdown { display: none; padding: 0 0 0.5rem; }
.lm-mobile-nav-item.open .lm-mobile-nav-dropdown { display: block; }
.lm-mobile-nav-dropdown a {
    display: block;
    padding: 0.55rem 2rem;
    font-size: 0.82rem;
    color: var(--lm-text-muted);
    transition: color var(--transition-fast);
}
.lm-mobile-nav-dropdown a:hover, .lm-mobile-nav-dropdown a.active { color: var(--lm-teal); }
.lm-mobile-nav-all {
    display: block;
    padding: 0.55rem 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lm-primary);
}

/* =========================================================
   HERO — SWIPER 3-SLIDE SLIDER
   ========================================================= */

.lm-hero {
    position: relative;
    height: calc(100vh - var(--topbar-height));
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}
.lm-hero .swiper { height: 100%; }
.lm-hero .swiper-slide {
    position: relative;
    overflow: hidden;
}
.lm-hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: lm-kenburns 10s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes lm-kenburns {
    0%   { transform: scale(1); }
    100% { transform: scale(1.06); }
}
.lm-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
        rgba(8,12,24,0.92) 0%,
        rgba(8,12,24,0.65) 55%,
        rgba(8,12,24,0.3) 100%);
}
.lm-hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 clamp(1.5rem, 5vw, 8rem);
    padding-top: var(--nav-height);
}
.lm-hero-text {
    max-width: 640px;
}
.lm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: rgba(192,38,211,0.2);
    border: 1px solid rgba(192,38,211,0.4);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lm-primary);
    margin-bottom: 1.5rem;
}
.lm-hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--lm-teal);
    border-radius: 50%;
    animation: lm-pulse 2s infinite;
}
@keyframes lm-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.lm-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw + 1rem, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: var(--lm-white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}
.lm-hero-title strong {
    color: var(--lm-gold);
    font-weight: 700;
}
.lm-hero-title em {
    font-style: normal;
    color: var(--lm-primary);
}
.lm-hero-desc {
    font-size: var(--text-lg);
    color: rgba(240,235,232,0.75);
    line-height: var(--leading-relaxed);
    margin-bottom: 2rem;
    max-width: 480px;
}
.lm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.lm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: var(--gradient-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.lm-btn-primary:hover {
    box-shadow: var(--shadow-fuchsia);
    transform: translateY(-2px);
}
.lm-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: rgba(218,165,32,0.15);
    border: 1px solid var(--lm-gold);
    color: var(--lm-gold);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: background var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}
.lm-btn-secondary:hover {
    background: rgba(218,165,32,0.25);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}
.lm-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: rgba(240,235,232,0.65);
    border-bottom: 1px solid rgba(240,235,232,0.25);
    transition: color var(--transition-fast), border-color var(--transition-fast);
}
.lm-btn-ghost:hover { color: var(--lm-teal); border-color: var(--lm-teal); }
.lm-btn-ghost svg { width: 14px; height: 14px; }

/* Swiper controls */
.lm-hero .swiper-pagination { bottom: 2rem; }
.lm-hero .swiper-pagination-bullet {
    width: 32px; height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    transition: background var(--transition-fast), width var(--transition-fast);
}
.lm-hero .swiper-pagination-bullet-active {
    background: var(--lm-gold);
    width: 48px;
}
.lm-hero-prev, .lm-hero-next {
    position: absolute;
    bottom: 2rem;
    z-index: 10;
    width: 44px; height: 44px;
    background: rgba(192,38,211,0.15);
    border: 1px solid rgba(192,38,211,0.3);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--lm-text);
    transition: background var(--transition-fast), box-shadow var(--transition-fast);
}
.lm-hero-prev:hover, .lm-hero-next:hover {
    background: rgba(192,38,211,0.35);
    box-shadow: var(--shadow-fuchsia);
}
.lm-hero-prev { right: 5.5rem; }
.lm-hero-next { right: 1.5rem; }
.lm-hero-prev svg, .lm-hero-next svg { width: 18px; height: 18px; }

/* =========================================================
   STATS BAND
   ========================================================= */

.lm-stats {
    background: var(--lm-dark-card);
    border-top: 1px solid rgba(192,38,211,0.15);
    border-bottom: 1px solid rgba(192,38,211,0.15);
    padding: 3.5rem 0;
}
.lm-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.lm-stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.07);
    position: relative;
}
.lm-stat-item:last-child { border-right: none; }
.lm-stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--lm-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lm-stat-label {
    font-size: 0.8rem;
    color: var(--lm-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
    font-weight: 600;
}

/* =========================================================
   CATEGORIES MAGAZINE (1 large + 5 small)
   ========================================================= */

.lm-cats-mag {
    padding: 5rem 0;
    background: var(--lm-dark);
}
.lm-section-head {
    text-align: center;
    margin-bottom: 3rem;
}
.lm-section-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lm-white);
    margin-bottom: 0.75rem;
}
.lm-section-title strong { color: var(--lm-primary); font-weight: 700; }
.lm-section-desc {
    font-size: var(--text-lg);
    color: var(--lm-text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.lm-cats-mag-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}
.lm-cat-featured {
    grid-row: 1 / 3;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 360px;
    background: var(--lm-dark-card2);
    border: 1px solid rgba(192,38,211,0.2);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}
.lm-cat-featured:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}
.lm-cat-featured-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.lm-cat-featured:hover .lm-cat-featured-bg { opacity: 0.55; transform: scale(1.04); }
.lm-cat-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8,12,24,0.95) 0%, rgba(8,12,24,0.3) 100%);
}
.lm-cat-featured-body { position: relative; z-index: 2; }
.lm-cat-featured-icon {
    width: 52px; height: 52px;
    background: rgba(192,38,211,0.2);
    border: 1px solid rgba(192,38,211,0.4);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: var(--lm-primary);
    margin-bottom: 1rem;
}
.lm-cat-featured-icon svg { width: 24px; height: 24px; }
.lm-cat-featured-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--lm-white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.lm-cat-featured-count {
    font-size: 0.8rem;
    color: var(--lm-teal);
    font-weight: 600;
    letter-spacing: 0.08em;
}
.lm-cat-small {
    position: relative;
    background: var(--lm-dark-card);
    border: 1px solid rgba(192,38,211,0.12);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}
.lm-cat-small:hover {
    border-color: rgba(192,38,211,0.4);
    box-shadow: 0 4px 20px rgba(192,38,211,0.15);
    transform: translateX(4px);
}
.lm-cat-small-icon {
    width: 40px; height: 40px;
    background: rgba(16,217,168,0.1);
    border: 1px solid rgba(16,217,168,0.25);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--lm-teal);
    flex-shrink: 0;
}
.lm-cat-small-icon svg { width: 18px; height: 18px; }
.lm-cat-small-info { flex: 1; min-width: 0; }
.lm-cat-small-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lm-text);
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lm-cat-small-count {
    font-size: 0.75rem;
    color: var(--lm-text-muted);
}
.lm-cat-small-arrow {
    color: rgba(255,255,255,0.2);
    transition: color var(--transition-fast), transform var(--transition-fast);
}
.lm-cat-small:hover .lm-cat-small-arrow {
    color: var(--lm-teal);
    transform: translateX(4px);
}
.lm-cat-small-arrow svg { width: 16px; height: 16px; }

/* =========================================================
   GALLERY STRIP
   ========================================================= */

.lm-gallery {
    padding: 0;
    overflow: hidden;
}
.lm-gallery-strip {
    display: flex;
    gap: 0.5rem;
    height: 320px;
}
.lm-gallery-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}
.lm-gallery-item:nth-child(2) { flex: 1.4; }
.lm-gallery-item:nth-child(4) { flex: 0.8; }
.lm-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.lm-gallery-item:hover img { transform: scale(1.06); }
.lm-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8,12,24,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
}
.lm-gallery-item:hover .lm-gallery-overlay { opacity: 1; }

/* =========================================================
   FEATURES 3-COL
   ========================================================= */

.lm-features {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--lm-dark-card) 0%, var(--lm-dark) 100%);
}
.lm-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.lm-feature-card {
    background: var(--lm-dark-card2);
    border: 1px solid rgba(192,38,211,0.12);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
    position: relative;
    overflow: hidden;
}
.lm-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lm-primary), var(--lm-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.lm-feature-card:hover {
    border-color: rgba(192,38,211,0.35);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
}
.lm-feature-card:hover::before { transform: scaleX(1); }
.lm-feature-num {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--lm-primary);
    margin-bottom: 1.25rem;
}
.lm-feature-icon {
    width: 56px; height: 56px;
    background: rgba(192,38,211,0.1);
    border: 1px solid rgba(192,38,211,0.25);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: var(--lm-primary);
    margin-bottom: 1.25rem;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}
.lm-feature-card:hover .lm-feature-icon {
    background: rgba(192,38,211,0.2);
    box-shadow: var(--shadow-fuchsia);
}
.lm-feature-icon svg { width: 26px; height: 26px; stroke-width: 1.5; }
.lm-feature-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lm-white);
    margin-bottom: 0.75rem;
}
.lm-feature-desc {
    font-size: 0.9rem;
    color: var(--lm-text-muted);
    line-height: var(--leading-relaxed);
}

/* =========================================================
   ABOUT SPLIT — IMAGE LEFT + TEXT RIGHT
   ========================================================= */

.lm-about {
    padding: 5rem 0;
    background: var(--lm-dark);
}
.lm-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.lm-about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.lm-about-img-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}
.lm-about-img-item:first-child {
    grid-column: 1 / 3;
    aspect-ratio: 16/7;
}
.lm-about-img-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.lm-about-img-item:hover img { transform: scale(1.05); }
.lm-about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(192,38,211,0.15) 0%, transparent 60%);
}
.lm-about-content {}
.lm-about-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lm-white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.lm-about-title span { color: var(--lm-primary); font-weight: 700; }
.lm-about-desc {
    font-size: var(--text-base);
    color: var(--lm-text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: 2rem;
}
.lm-about-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.lm-about-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--lm-text-dim);
}
.lm-about-check::before {
    content: '';
    display: inline-block;
    width: 18px; height: 18px;
    background: rgba(16,217,168,0.15);
    border: 1px solid var(--lm-teal);
    border-radius: var(--radius-sm);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310D9A8' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.lm-about-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.lm-about-stat {
    background: var(--lm-dark-card);
    border: 1px solid rgba(192,38,211,0.15);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}
.lm-about-stat-num {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--lm-gold);
    margin-bottom: 0.25rem;
}
.lm-about-stat-label {
    font-size: 0.78rem;
    color: var(--lm-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =========================================================
   ARTICLES 3×3
   ========================================================= */

.lm-articles {
    padding: 5rem 0;
    background: var(--lm-dark-card);
}
.lm-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.lm-article-card {
    background: var(--lm-dark-card2);
    border: 1px solid rgba(192,38,211,0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
    display: flex;
    flex-direction: column;
}
.lm-article-card:hover {
    border-color: rgba(192,38,211,0.3);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-5px);
}
.lm-article-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}
.lm-article-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.lm-article-card:hover .lm-article-card-img img { transform: scale(1.06); }
.lm-article-card-num {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    padding: 0.2rem 0.6rem;
    background: rgba(192,38,211,0.85);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}
.lm-article-card-body {
    padding: 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.lm-article-card-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--lm-text);
    margin-bottom: 0.75rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lm-article-read-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lm-teal);
    transition: gap var(--transition-fast);
}
.lm-article-read-link svg { width: 12px; height: 12px; }
.lm-article-card:hover .lm-article-read-link { gap: 0.6rem; }

/* =========================================================
   KEYWORDS CAROUSEL
   ========================================================= */

.lm-carousel-section {
    padding: 3rem 0;
    background: var(--lm-dark);
    overflow: hidden;
}
.lm-carousel-wrapper {
    overflow: hidden;
}
.lm-carousel-triple {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.lm-carousel-row {
    display: flex;
    gap: 0.5rem;
    width: max-content;
    animation: lm-scroll-left var(--carousel-speed-row1) linear infinite;
}
.lm-carousel-row.reverse {
    animation: lm-scroll-right var(--carousel-speed-row2) linear infinite;
}
.lm-carousel-row.slow {
    animation: lm-scroll-left var(--carousel-speed-row3) linear infinite;
}
@keyframes lm-scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes lm-scroll-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.kw-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.1rem;
    background: var(--lm-dark-card);
    border: 1px solid rgba(192,38,211,0.2);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    color: var(--lm-text-dim);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
    font-family: var(--font-main);
}
.kw-pill:hover {
    border-color: var(--lm-primary);
    color: var(--lm-primary);
    box-shadow: 0 0 12px rgba(192,38,211,0.2);
}

/* Carousel static/row */
.carousel-static, .carousel-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.carousel-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow: hidden;
    width: max-content;
    animation: lm-scroll-left var(--carousel-speed-row1) linear infinite;
}

/* =========================================================
   TAGS CLOUD
   ========================================================= */

.lm-tags-section {
    padding: 3.5rem 0;
    background: var(--lm-dark-card);
    border-top: 1px solid rgba(192,38,211,0.1);
}
.lm-tags-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lm-text-muted);
    margin-bottom: 1.75rem;
}
.lm-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.lm-tag-pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(218,165,32,0.08);
    border: 1px solid rgba(218,165,32,0.2);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    color: var(--lm-gold);
    transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}
.lm-tag-pill:hover {
    background: rgba(218,165,32,0.18);
    box-shadow: 0 0 12px rgba(218,165,32,0.2);
    transform: translateY(-2px);
}

/* =========================================================
   CTA BAND
   ========================================================= */

.lm-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0E0617 0%, #180A24 50%, #0A1218 100%);
    position: relative;
    overflow: hidden;
}
.lm-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(192,38,211,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.lm-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(16,217,168,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.lm-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.lm-cta-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(218,165,32,0.1);
    border: 1px solid rgba(218,165,32,0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lm-gold);
    margin-bottom: 1.5rem;
}
.lm-cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lm-white);
    margin-bottom: 1.25rem;
}
.lm-cta-title strong { color: var(--lm-primary); font-weight: 700; }
.lm-cta-desc {
    font-size: var(--text-lg);
    color: var(--lm-text-muted);
    margin-bottom: 2.5rem;
}
.lm-cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
}
.lm-cta-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}
.lm-cta-card:hover {
    border-color: rgba(192,38,211,0.3);
    background: rgba(192,38,211,0.05);
}
.lm-cta-card-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lm-teal);
    margin-bottom: 0.5rem;
}
.lm-cta-card-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--lm-white);
    margin-bottom: 0.5rem;
}
.lm-cta-card-desc {
    font-size: 0.82rem;
    color: var(--lm-text-muted);
    line-height: var(--leading-relaxed);
}
.lm-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */

.lm-footer {
    background: var(--color-bg-footer);
    border-top: 1px solid rgba(192,38,211,0.15);
}
.lm-footer-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 3.5rem var(--container-padding);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}
.lm-footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.lm-footer-brand-logo img { width: 32px; height: 32px; }
.lm-footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--lm-text);
}
.lm-footer-brand-desc {
    font-size: 0.85rem;
    color: var(--lm-text-muted);
    line-height: var(--leading-relaxed);
}
.lm-footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lm-gold);
    margin-bottom: 1.25rem;
}
.lm-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.lm-footer-links a {
    font-size: 0.85rem;
    color: var(--lm-text-muted);
    transition: color var(--transition-fast);
}
.lm-footer-links a:hover { color: var(--lm-teal); }
.lm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}
.lm-footer-copyright {
    font-size: 0.82rem;
    color: var(--lm-text-muted);
    margin: 0;
}
.lm-footer-disclaimer {
    font-size: 0.76rem;
    color: rgba(240,235,232,0.3);
    line-height: var(--leading-relaxed);
    max-width: 700px;
    margin: 0;
}

/* =========================================================
   PAGE WRAPPER
   ========================================================= */

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.page-wrapper main { flex: 1; }

/* =========================================================
   MODAL
   ========================================================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: var(--z-modal-backdrop);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: min(700px, 90vw);
    max-height: 80vh;
    background: #0D1127;
    border: 1px solid rgba(192,38,211,0.3);
    border-radius: var(--radius-xl);
    z-index: var(--z-modal);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base), transform var(--transition-base);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 80px rgba(0,0,0,0.8), var(--shadow-fuchsia);
}
.modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(192,38,211,0.15);
}
.modal-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lm-white);
}
.modal-close {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(192,38,211,0.1);
    border-radius: var(--radius-sm);
    color: var(--lm-text);
    transition: background var(--transition-fast);
}
.modal-close:hover { background: rgba(192,38,211,0.25); }
.modal-close svg { width: 16px; height: 16px; }
.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    color: var(--lm-text-muted);
    font-size: 0.92rem;
    line-height: var(--leading-relaxed);
}
.modal-body h2, .modal-body h3 {
    color: var(--lm-white);
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}
.modal-body p { margin-bottom: 0.75rem; }
.preloaded-content { display: none; }

/* =========================================================
   INTERNAL PAGES — CATEGORY / SUBCATEGORY
   ========================================================= */

.lm-page-header {
    padding: calc(var(--nav-height) + 4rem) 0 3rem;
    background: linear-gradient(180deg, var(--lm-dark-card2) 0%, var(--lm-dark) 100%);
    border-bottom: 1px solid rgba(192,38,211,0.1);
    position: relative;
    overflow: hidden;
}
.lm-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(ellipse, rgba(192,38,211,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.lm-page-header-inner {
    position: relative;
    z-index: 1;
}
.lm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--lm-text-muted);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.lm-breadcrumb a { color: var(--lm-teal); transition: color var(--transition-fast); }
.lm-breadcrumb a:hover { color: var(--lm-white); }
.lm-breadcrumb span { color: var(--lm-primary); }
.lm-page-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lm-white);
    margin-bottom: 1rem;
}
.lm-page-title strong { color: var(--lm-primary); font-weight: 700; }
.lm-page-desc {
    font-size: var(--text-lg);
    color: var(--lm-text-muted);
    max-width: 680px;
    line-height: var(--leading-relaxed);
}

/* =========================================================
   SUBCATEGORIES GRID (category.php)
   ========================================================= */

.lm-sub-section {
    padding: 4rem 0;
    background: var(--lm-dark);
}
.lm-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.lm-sub-card {
    background: var(--lm-dark-card);
    border: 1px solid rgba(192,38,211,0.12);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}
.lm-sub-card:hover {
    border-color: rgba(192,38,211,0.35);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}
.lm-sub-card-icon {
    width: 44px; height: 44px;
    background: rgba(192,38,211,0.1);
    border: 1px solid rgba(192,38,211,0.2);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--lm-primary);
    margin-bottom: 1rem;
}
.lm-sub-card-icon svg { width: 20px; height: 20px; }
.lm-sub-card-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lm-white);
    margin-bottom: 0.5rem;
}
.lm-sub-card-count {
    font-size: 0.78rem;
    color: var(--lm-teal);
    font-weight: 600;
}

/* Articles in sub/category */
.lm-articles-section { padding: 4rem 0; background: var(--lm-dark-card); }
.lm-articles-section-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lm-white);
    margin-bottom: 2rem;
}

/* =========================================================
   ARTICLE PAGE
   ========================================================= */

.lm-article-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem var(--container-padding);
}
.lm-article-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.lm-article-cat-badge {
    padding: 0.2rem 0.75rem;
    background: rgba(192,38,211,0.15);
    border: 1px solid rgba(192,38,211,0.3);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lm-primary);
}
.lm-article-h1 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--lm-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.lm-article-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 2rem;
    aspect-ratio: 16/7;
}
.lm-article-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lm-article-body {
    color: var(--lm-text-dim);
    font-size: 1rem;
    line-height: var(--leading-relaxed);
}
.lm-article-body h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--lm-white);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(192,38,211,0.2);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.lm-article-body h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--lm-teal);
    margin: 1.5rem 0 0.75rem;
    letter-spacing: 0.04em;
}
.lm-article-body p { margin-bottom: 1.25rem; }
.lm-article-body ul, .lm-article-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.lm-article-body li { margin-bottom: 0.4rem; }
.lm-article-body strong { color: var(--lm-gold); font-weight: 700; }
.lm-article-body a { color: var(--lm-primary); text-decoration: underline; }
.lm-article-body a:hover { color: var(--lm-teal); }

/* Article tags */
.lm-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(192,38,211,0.15);
}

/* Casino cards */
.casino-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.casino-card-new {
    background: var(--lm-dark-card);
    border: 1px solid rgba(192,38,211,0.15);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.casino-card-new:hover {
    border-color: rgba(218,165,32,0.4);
    box-shadow: var(--shadow-gold);
}
.casino-card-new-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.75rem;
}
.casino-card-new-name {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--lm-white);
    margin-bottom: 0.4rem;
}
.casino-card-new-bonus {
    font-size: 0.82rem;
    color: var(--lm-gold);
    margin-bottom: 0.75rem;
}
.casino-card-new-btn {
    display: block;
    width: 100%;
    padding: 0.6rem;
    background: var(--gradient-gold);
    color: var(--lm-dark);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    border-radius: var(--radius-md);
    transition: box-shadow var(--transition-fast);
}
.casino-card-new-btn:hover { box-shadow: var(--shadow-gold); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.lm-contact-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem var(--container-padding);
}
.lm-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.lm-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.lm-form-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lm-text-muted);
}
.lm-form-input, .lm-form-textarea {
    padding: 0.85rem 1rem;
    background: var(--lm-dark-card);
    border: 1px solid rgba(192,38,211,0.2);
    border-radius: var(--radius-lg);
    color: var(--lm-text);
    font-size: 0.92rem;
    font-family: var(--font-main);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.lm-form-input:focus, .lm-form-textarea:focus {
    outline: none;
    border-color: var(--lm-primary);
    box-shadow: 0 0 0 3px rgba(192,38,211,0.1);
}
.lm-form-textarea { resize: vertical; min-height: 140px; }
.lm-form-submit {
    padding: 0.9rem 2rem;
    background: var(--gradient-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.lm-form-submit:hover {
    box-shadow: var(--shadow-fuchsia);
    transform: translateY(-2px);
}

/* =========================================================
   404 PAGE
   ========================================================= */

.lm-404 {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem var(--container-padding);
}
.lm-404-inner {}
.lm-404-code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-fuchsia-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.lm-404-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lm-white);
    margin-bottom: 1rem;
}
.lm-404-desc {
    font-size: var(--text-base);
    color: var(--lm-text-muted);
    margin-bottom: 2rem;
}

/* =========================================================
   TAG PAGE
   ========================================================= */

.lm-tag-section { padding: 4rem 0; background: var(--lm-dark); }
.lm-tag-page-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lm-white);
    margin-bottom: 2rem;
}
.lm-tag-page-title span { color: var(--lm-primary); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
    .lm-cats-mag-grid { grid-template-columns: 1fr 1fr; }
    .lm-cat-featured { grid-row: auto; }
    .lm-about-inner { grid-template-columns: 1fr; gap: 2rem; }
    .lm-about-img-grid { grid-template-columns: repeat(3, 1fr); }
    .lm-about-img-item:first-child { grid-column: 1 / 4; }
    .lm-features-grid { grid-template-columns: 1fr 1fr; }
    .lm-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lm-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .lm-stat-item:last-child { border-bottom: none; }
    .lm-articles-grid { grid-template-columns: repeat(2, 1fr); }
    .lm-sub-grid { grid-template-columns: repeat(2, 1fr); }
    .lm-footer-grid { grid-template-columns: 1fr 1fr; }
    .lm-cta-cards { grid-template-columns: 1fr; }
    .lm-gallery-strip { height: 220px; }
}

@media (max-width: 768px) {
    .lm-nav { display: none; }
    .lm-header-cta { display: none; }
    .lm-burger { display: flex; }
    :root { --topbar-height: 0px; --nav-height: 60px; --header-height: 60px; }
    .lm-topbar { display: none; }
    .lm-hero { height: calc(100vh - 60px); }
    .lm-hero-slide-content { padding: 0 1.5rem; }
    .lm-cats-mag-grid { grid-template-columns: 1fr; }
    .lm-about-img-grid { grid-template-columns: 1fr 1fr; }
    .lm-about-img-item:first-child { grid-column: 1 / 3; }
    .lm-features-grid { grid-template-columns: 1fr; }
    .lm-articles-grid { grid-template-columns: 1fr; }
    .lm-sub-grid { grid-template-columns: 1fr; }
    .lm-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .lm-gallery-strip { height: 180px; }
    .lm-hero-prev, .lm-hero-next { display: none; }
    .lm-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .lm-stats-grid { grid-template-columns: 1fr; }
    .lm-article-card-img { height: 140px; }
    .lm-about-stats-row { grid-template-columns: 1fr; }
    .lm-cta-actions { flex-direction: column; align-items: center; }
}

/* =========================================================
   LISTING PAGE (subcategory / tag)
   ========================================================= */

.lm-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.lm-listing-card {
    background: var(--lm-dark-card2);
    border: 1px solid rgba(192,38,211,0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
    display: flex;
    flex-direction: column;
}
.lm-listing-card:hover {
    border-color: rgba(192,38,211,0.35);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}
.lm-listing-card-img {
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
}
.lm-listing-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.lm-listing-card:hover .lm-listing-card-img img { transform: scale(1.06); }
.lm-listing-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.lm-listing-card-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--lm-text);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lm-listing-card-meta {
    font-size: 0.78rem;
    color: var(--lm-teal);
    font-weight: 600;
}

/* Pagination */
.lm-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}
.lm-pagination-list {
    display: flex;
    gap: 0.4rem;
    list-style: none;
    align-items: center;
}
.lm-pagination-list li a,
.lm-pagination-list li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(192,38,211,0.2);
    background: var(--lm-dark-card);
    color: var(--lm-text-muted);
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}
.lm-pagination-list li a:hover {
    border-color: var(--lm-primary);
    color: var(--lm-primary);
    background: rgba(192,38,211,0.08);
}
.lm-pagination-current {
    background: var(--gradient-primary) !important;
    border-color: var(--lm-primary) !important;
    color: #fff !important;
}

/* Article sidebar */
.lm-article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: flex-start;
}
.lm-sidebar {}
.lm-sidebar-widget {
    background: var(--lm-dark-card);
    border: 1px solid rgba(192,38,211,0.12);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}
.lm-sidebar-title {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lm-gold);
    margin-bottom: 1.25rem;
}
.lm-sidebar-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.88rem;
    color: var(--lm-text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color var(--transition-fast);
}
.lm-sidebar-cat-link:hover { color: var(--lm-teal); }
.lm-sidebar-cat-link:last-child { border-bottom: none; }
.lm-sidebar-cat-link svg { width: 10px; height: 10px; }
.lm-sidebar-rel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.lm-sidebar-rel-item {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}
.lm-sidebar-rel-item img {
    width: 52px; height: 38px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    display: block;
}
.lm-sidebar-rel-title {
    font-size: 0.82rem;
    color: var(--lm-text-muted);
    line-height: 1.45;
    transition: color var(--transition-fast);
}
.lm-sidebar-rel-item:hover .lm-sidebar-rel-title { color: var(--lm-teal); }

@media (max-width: 900px) {
    .lm-listing-grid { grid-template-columns: repeat(2, 1fr); }
    .lm-article-layout { grid-template-columns: 1fr; }
    .lm-sidebar { display: none; }
}
@media (max-width: 580px) {
    .lm-listing-grid { grid-template-columns: 1fr; }
}
