/* Extracted from globals/header.php block 1 */
/* Basic reset */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --ww-bg: #050609;
            --ww-surface: #020617;
            --ww-surface-soft: #0b1220;
            --ww-border: #1f2933;
            --ww-border-soft: #111827;
            --ww-text: #f9fafb;
            --ww-text-subtle: #9ca3af;
            --ww-accent-blue: #2563eb;
            --ww-accent-green: #16a34a;
            --ww-accent-discord: #5865f2;

            /* Nav + logo sizing */
            --ww-nav-height: 72px;
            --ww-logo-size: 92px;
            --ww-logo-float: 22px;
            --ww-logo-img: 100%;
            --ww-logo-overlap: 34px;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: var(--ww-bg);
            color: #f5f5f5;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

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

        /* Top navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 20;
            --ww-header-expand: 0px;
            padding-bottom: var(--ww-header-expand);
            background:
                radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0) 34%),
                radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), rgba(59, 130, 246, 0) 36%),
                rgba(3, 7, 18, 0.92);
            border-bottom: 1px solid rgba(148, 163, 184, 0.14);
            backdrop-filter: blur(12px);
            overflow: visible;
            transition: padding-bottom 0.18s ease;
        }

        header::before {
            content: "";
            position: absolute;
            inset: auto 0 0 0;
            height: 1px;
            background: linear-gradient(90deg, rgba(34,197,94,0), rgba(34,197,94,0.65), rgba(96,165,250,0.7), rgba(96,165,250,0));
            pointer-events: none;
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 56px;
            padding: 0.35rem 1.1rem 0.35rem 1.1rem;
            gap: 0.75rem;
            overflow: visible;
        }

        .nav-expand-shell {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.1rem 0;
        }

        .nav-expanded-panel {
            display: none;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            min-width: 0;
            flex: 0 0 auto;
            position: relative;
            padding-left: calc(var(--ww-logo-size) + 0.85rem);
        }

        /* BIG floating circle logo */
        .nav-logo {
            width: var(--ww-logo-size);
            height: var(--ww-logo-size);
            min-width: var(--ww-logo-size);
            min-height: var(--ww-logo-size);
            max-width: var(--ww-logo-size);
            max-height: var(--ww-logo-size);
            flex: 0 0 auto;
            aspect-ratio: 1 / 1;
            padding: 0;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: 0;
            top: 50%;
            background: radial-gradient(circle at 0 0, #1f2937 0, #020617 55%);
            border: 1px solid rgba(148, 163, 184, 0.35);
            box-shadow:
                0 0 0 1px rgba(15, 23, 42, 0.9),
                0 18px 38px rgba(0, 0, 0, 0.78);
            transform: translateY(calc(-50% + var(--ww-logo-float)));
            z-index: 25;
            overflow: hidden;
        }

        .nav-logo a {
            width: 100%;
            height: 100%;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .nav-logo a::before {
            content: "";
            position: absolute;
            inset: -35%;
            background: linear-gradient(
                110deg,
                rgba(255,255,255,0) 0%,
                rgba(255,255,255,0.0) 35%,
                rgba(255,255,255,0.35) 50%,
                rgba(255,255,255,0.0) 65%,
                rgba(255,255,255,0) 100%
            );
            transform: translateX(-140%) rotate(8deg);
            opacity: 0.0;
            pointer-events: none;
            z-index: 1;
            animation: wwLogoShimmer 4.2s ease-in-out infinite;
            border-radius: 999px;
        }

        .nav-logo img {
            width: var(--ww-logo-img);
            height: var(--ww-logo-img);
            object-fit: cover;
            object-position: center;
            border-radius: inherit;
            filter: drop-shadow(0 2px 6px rgba(0,0,0,0.55));
            position: relative;
            z-index: 2;
        }

        .nav-logo::before {
            content: none;
        }

        @keyframes wwLogoShimmer {
            0%   { transform: translateX(-140%) rotate(8deg); opacity: 0; }
            8%   { opacity: 0.55; }
            18%  { transform: translateX(140%) rotate(8deg); opacity: 0.0; }
            100% { transform: translateX(140%) rotate(8deg); opacity: 0.0; }
        }

        .nav-logo::after {
            content: "";
            position: absolute;
            inset: -2px;
            border-radius: 999px;
            box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.0);
            pointer-events: none;
            animation: wwLogoPulse 4.2s ease-in-out infinite;
        }

        @keyframes wwLogoPulse {
            0%   { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.0); }
            8%   { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.0); }
            14%  { box-shadow: 0 0 18px 2px rgba(56, 189, 248, 0.18); }
            22%  { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.0); }
            100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.0); }
        }

        .nav-brand {
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: 0 1 auto;
            min-width: 0;
            max-width: 220px;
        }

        .nav-brand-title {
            font-size: 0.98rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .nav-brand-sub {
            font-size: 0.7rem;
            color: var(--ww-text-subtle);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            position: relative;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.9rem;
            position: static;
        }

        .nav-item {
            position: relative;
        }

        .nav-item:hover,
        .nav-item:focus-within,
        .nav-has-dropdown.open {
            z-index: 60;
        }

        .nav-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.1rem;
            font-size: 0.95rem;
            line-height: 1;
        }

        .nav-link,
        .nav-link-btn {
            position: relative;
            min-height: 38px;
            padding: 0.34rem 0.78rem 0.36rem 0.78rem;
            border-radius: 999px;
            color: #e5e7eb;
            transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
            border: 1px solid rgba(148, 163, 184, 0.22);
            font-size: 0.82rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.38rem;
            cursor: pointer;
            background: rgba(15, 23, 42, 0.95);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
        }

        .nav-link:hover,
        .nav-link-btn:hover {
            background: rgba(17, 24, 39, 0.95);
            border-color: rgba(148, 163, 184, 0.42);
            color: #ffffff;
            transform: none;
        }

        .nav-link-btn {
            border-radius: 999px;
        }

        .nav-caret {
            font-size: 0.65rem;
            opacity: 0.75;
            transform: translateY(1px);
        }

        .nav-dropdown {
            position: absolute;
            top: calc(100% - 0.2rem);
            left: 0;
            min-width: 280px;
            background:
                linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
            border-radius: 22px;
            border: 1px solid rgba(148, 163, 184, 0.12);
            box-shadow: 0 24px 60px rgba(2, 6, 23, 0.75);
            padding: 0.7rem;
            opacity: 0;
            pointer-events: none;
            transform: translateY(-6px);
            transition: opacity 0.16s ease, transform 0.16s ease;
            z-index: 40;
            overflow: visible;
        }

        .nav-dropdown::after {
            display: none;
        }

        .nav-dropdown::before {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 5px;
            background: linear-gradient(90deg, #22c55e, #38bdf8, #60a5fa);
            opacity: 0.9;
            pointer-events: none;
        }

        .nav-dropdown-grid {
            display: grid;
            gap: 0.28rem;
        }

        .nav-dropdown-head {
            display: none;
        }

        .nav-dropdown-kicker,
        .nav-dropdown-title,
        .nav-card-title,
        .nav-card-copy,
        .nav-submenu-copy {
            display: block;
        }

        .nav-card-title {
            font-size: 0.94rem;
            font-weight: 700;
            color: #f8fafc;
        }

        .nav-card-copy,
        .nav-submenu-copy {
            margin-top: 0.26rem;
            font-size: 0.78rem;
            line-height: 1.45;
            color: rgba(226, 232, 240, 0.66);
        }

        .nav-dropdown-label {
            padding: 0.58rem 0.85rem 0.18rem 0.85rem;
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #7dd3fc;
            opacity: 0.88;
        }

        .nav-dropdown a {
            display: block;
            position: relative;
            padding: 0.8rem 0.95rem 0.8rem 2.55rem;
            border-radius: 16px;
            font-size: 0.88rem;
            color: #e5e7eb;
            border: 1px solid transparent;
            background: rgba(255,255,255,0.03);
            transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
        }

        .nav-dropdown a::before {
            content: attr(data-icon);
            position: absolute;
            left: 0.8rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
            line-height: 1;
        }

        .nav-dropdown a:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(148, 163, 184, 0.18);
            color: #fff;
            transform: none;
        }

        .nav-submenu-group {
            position: relative;
        }

        .nav-submenu-group:hover,
        .nav-submenu-group:focus-within,
        .nav-submenu-group.is-open {
            z-index: 65;
        }

        .nav-submenu-trigger {
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.65rem;
            padding: 0.8rem 0.95rem;
            border-radius: 16px;
            border: 1px solid transparent;
            background: rgba(255,255,255,0.03);
            color: #e5e7eb;
            font-size: 0.88rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
        }

        .nav-submenu-trigger:hover,
        .nav-submenu-group.is-open > .nav-submenu-trigger {
            background: rgba(255,255,255,0.08);
            border-color: rgba(148, 163, 184, 0.18);
            color: #fff;
            transform: none;
        }

        .nav-submenu-trigger-main {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
        }

        .nav-submenu-icon {
            font-size: 1rem;
            line-height: 1;
        }

        .nav-submenu-caret {
            font-size: 0.8rem;
            opacity: 0.8;
        }

        .nav-submenu-panel {
            position: absolute;
            top: -0.35rem;
            left: calc(100% - 0.55rem);
            width: 250px;
            padding: 0.65rem;
            border-radius: 20px;
            border: 1px solid rgba(148, 163, 184, 0.12);
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
            box-shadow: 0 24px 60px rgba(2, 6, 23, 0.75);
            opacity: 0;
            pointer-events: none;
            transform: translateX(-8px);
            transition: opacity 0.16s ease, transform 0.16s ease;
            z-index: 45;
        }

        .nav-submenu-panel::before {
            display: none;
        }

        .nav-submenu-panel::after {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 4px;
            background: linear-gradient(90deg, #fbbf24, #38bdf8);
        }

        .nav-submenu-group:hover > .nav-submenu-panel,
        .nav-submenu-group.is-open > .nav-submenu-panel {
            opacity: 1;
            pointer-events: auto;
            transform: translateX(0);
        }

        .nav-submenu-grid {
            display: grid;
            gap: 0.28rem;
        }

        .nav-has-dropdown.open .nav-dropdown {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        @media (min-width: 901px) {
            .nav-item.nav-has-dropdown {
                position: relative;
            }

            .nav-item.nav-has-dropdown > .nav-dropdown {
                display: none !important;
            }

            .nav-expand-shell {
                position: relative;
                padding-right: 1.1rem;
                padding-bottom: 0;
                padding-left: calc(1.1rem + var(--ww-logo-size) + 0.85rem);
            }

            .nav-expanded-panel {
                display: none;
                position: relative;
                max-height: 0;
                padding: 0 0 0;
                border-top: 1px solid rgba(148, 163, 184, 0.08);
                background: transparent;
                overflow: hidden;
                opacity: 0;
                transform: translateY(-10px);
                pointer-events: none;
                transition: max-height 0.42s ease, padding 0.34s ease, opacity 0.28s ease, transform 0.32s ease;
            }

            .nav-expanded-panel.is-open {
                display: block;
                max-height: 640px;
                padding: 0.95rem 0 1rem;
                opacity: 1;
                transform: translateY(0);
                pointer-events: auto;
            }

            .nav-expanded-panel::before {
                content: "";
                position: absolute;
                inset: 0 1.1rem auto;
                height: 1px;
                background: linear-gradient(90deg, rgba(34,197,94,0), rgba(34,197,94,0.68), rgba(96,165,250,0.74), rgba(96,165,250,0));
                opacity: 0.55;
                pointer-events: none;
            }

            .nav-expanded-panel .nav-dropdown {
                position: static;
                min-width: 0;
                width: auto;
                padding: 0;
                border: none;
                border-radius: 0;
                background: transparent;
                box-shadow: none;
                opacity: 1;
                pointer-events: auto;
                transform: none;
                display: block;
            }

            .nav-expanded-panel .nav-dropdown::before,
            .nav-expanded-panel .nav-dropdown::after {
                display: none;
            }

            .nav-dropdown-head {
                display: flex;
                align-items: end;
                justify-content: space-between;
                gap: 1rem;
                padding: 0.2rem 0 0.85rem;
            }

            .nav-dropdown-kicker {
                font-size: 0.72rem;
                font-weight: 800;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                color: #7dd3fc;
            }

            .nav-dropdown-title {
                margin-top: 0.3rem;
                font-size: 1.1rem;
                font-weight: 800;
                color: #f8fafc;
                letter-spacing: 0.01em;
            }

            .nav-dropdown-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 0.6rem 0.9rem;
            }

            .nav-dropdown-grid.is-explore {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .nav-dropdown a {
                min-height: 96px;
                padding: 0.85rem 0.85rem 0.9rem 2.7rem;
                border-radius: 14px;
                border: 1px solid transparent;
                background: transparent;
            }

            .nav-dropdown a::before {
                left: 0.7rem;
                top: 0.82rem;
                transform: none;
                font-size: 0.98rem;
            }

            .nav-dropdown a:hover {
                background: rgba(255,255,255,0.04);
                border-color: rgba(148, 163, 184, 0.12);
            }

            .nav-submenu-group {
                border-radius: 0;
                border: none;
                background: transparent;
                padding: 0;
            }

            .nav-submenu-trigger {
                padding: 0;
                border: none;
                border-radius: 0;
                background: transparent;
                justify-content: flex-start;
                align-items: flex-start;
                cursor: default;
            }

            .nav-submenu-trigger:hover,
            .nav-submenu-group.is-open > .nav-submenu-trigger {
                background: transparent;
                border-color: transparent;
            }

            .nav-submenu-trigger-main {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.24rem;
            }

            .nav-submenu-icon {
                font-size: 1.1rem;
                margin-bottom: 0.18rem;
            }

            .nav-submenu-caret {
                display: none;
            }

            .nav-submenu-panel {
                position: static;
                width: 100%;
                padding: 0;
                margin-top: 0.55rem;
                border: none;
                border-radius: 0;
                background: transparent;
                box-shadow: none;
                opacity: 1;
                pointer-events: auto;
                transform: none;
            }

            .nav-submenu-panel::after {
                display: none;
            }

            .nav-submenu-grid {
                gap: 0.45rem;
            }

            .nav-submenu-grid a {
                min-height: 84px;
            }
        }

        .nav-auth {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }
        .ww-sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .nav-dashboard-pill {
            display: inline-flex;
            align-items: stretch;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.42);
            background: rgba(15, 23, 42, 0.95);
            overflow: hidden;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
        }
        .nav-dashboard-segment {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 38px;
            color: #e5e7eb;
            text-decoration: none;
            white-space: nowrap;
        }
        .nav-dashboard-segment:hover {
            background: rgba(17, 24, 39, 0.95);
        }
        .nav-dashboard-bell {
            width: 40px;
            min-width: 40px;
        }
        .nav-dashboard-search {
            width: 40px;
            min-width: 40px;
            padding: 0;
            border-left: 1px solid rgba(148, 163, 184, 0.25);
            background: transparent;
            border-top: 0;
            border-right: 0;
            border-bottom: 0;
            cursor: pointer;
            font: inherit;
        }
        .nav-dashboard-main {
            width: 40px;
            min-width: 40px;
            padding: 0;
            font-size: 0.82rem;
            font-weight: 600;
            border-left: 1px solid rgba(148, 163, 184, 0.25);
        }
        .nav-dashboard-gear {
            font-size: 1rem;
            line-height: 1;
        }

        .btn {
            min-height: 38px;
            padding: 0.3rem 0.82rem;
            border-radius: 999px;
            font-size: 0.82rem;
            border: 1px solid rgba(148, 163, 184, 0.42);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .btn-login {
            background: rgba(15, 23, 42, 0.95);
            color: #e5e7eb;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
        }

        .btn-register {
            background: rgba(15, 23, 42, 0.95);
            color: #e5e7eb;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
        }

        .nav-inbox-link {
            position: relative;
            width: 38px;
            height: 38px;
            padding: 0;
            justify-content: center;
            border-radius: 999px;
        }

        .nav-inbox-badge {
            position: absolute;
            top: -4px;
            right: -3px;
            min-width: 20px;
            height: 20px;
            padding: 0 5px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ef4444, #f97316);
            color: #fff;
            font-size: 0.68rem;
            font-weight: 900;
            line-height: 1;
            box-shadow: 0 8px 20px rgba(239, 68, 68, 0.35);
        }

        .btn-login:hover {
            background: rgba(17, 24, 39, 0.95);
        }

        .btn-register:hover {
            background: rgba(17, 24, 39, 0.95);
            border-color: rgba(148, 163, 184, 0.42);
        }

        .nav-toggle {
            display: none;
            border: 1px solid rgba(148, 163, 184, 0.55);
            background: rgba(15, 23, 42, 0.92);
            border-radius: 999px;
            width: 40px;
            height: 34px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            padding: 0;
        }

        .nav-toggle-bars {
            display: inline-block;
            width: 18px;
            height: 14px;
            position: relative;
        }

        .nav-toggle-bars span {
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            border-radius: 999px;
            background: #e5e7eb;
            transition: transform 0.18s ease, top 0.18s ease, opacity 0.18s ease;
        }

        .nav-toggle-bars span:nth-child(1) { top: 0; }
        .nav-toggle-bars span:nth-child(2) { top: 6px; }
        .nav-toggle-bars span:nth-child(3) { top: 12px; }

        body.nav-open .nav-toggle-bars span:nth-child(1) {
            top: 6px;
            transform: rotate(45deg);
        }

        body.nav-open .nav-toggle-bars span:nth-child(2) { opacity: 0; }

        body.nav-open .nav-toggle-bars span:nth-child(3) {
            top: 6px;
            transform: rotate(-45deg);
        }

        main { margin-top: var(--ww-nav-height); }

        .hero-wrapper {
            position: relative;
            height: 100vh;
            max-height: 900px;
            overflow: visible;
        }

        .hero-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
        }

        .hero-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 1rem;
            color: #ffffff;
        }

        .hero-logo {
            max-width: 480px;
            margin: 0 auto;
        }

        .hero-title {
            margin-top: 1.5rem;
            font-size: 2.2rem;
            font-weight: bold;
            line-height: 1.2;
        }

        @media (min-width: 768px) {
            .hero-title { font-size: 3rem; }
        }

        .hero-subtitle {
            margin-top: 0.9rem;
            font-size: 1rem;
            max-width: 700px;
            color: #d1d5db;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            margin-top: 1.5rem;
        }

        @media (min-width: 640px) {
            .hero-buttons { flex-direction: row; }
        }

        .hero-btn {
            padding: 0.7rem 1.4rem;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            border: none;
            color: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.4);
        }

        .hero-btn-discord { background: #5865f2; }
        .hero-btn-vrc { background: #f97316; }
        .hero-btn-account { background: #16a34a; }

        .hero-btn:hover { opacity: 0.92; }

        .section { padding: 3rem 1.25rem; }
        .section-dark { background: #020617; }
        .section-gradient { background: linear-gradient(90deg, #1d4ed8, #ec4899); }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .about-grid { grid-template-columns: 1.2fr 1fr; }
        }

        .section-title {
            font-size: 1.9rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #d1d5db;
        }

        .features-list {
            display: grid;
            gap: 1rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }

        .feature-icon {
            width: 26px;
            height: 26px;
            border-radius: 999px;
            background: #1d4ed8;
            flex-shrink: 0;
        }

        .feature-text {
            font-size: 0.98rem;
            color: #e5e7eb;
        }

        .cta {
            text-align: center;
            color: #f9fafb;
        }

        .cta-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.7rem;
        }

        .cta-text {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1rem;
            line-height: 1.6;
        }

        .cta-buttons {
            margin-top: 1.4rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem;
        }

        .cta-btn {
            padding: 0.7rem 1.3rem;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.3);
            background: rgba(0,0,0,0.35);
            color: #fff;
            box-shadow: 0 3px 10px rgba(0,0,0,0.35);
        }

        .cta-btn:hover { background: rgba(0,0,0,0.6); }

        footer {
            position: relative;
            z-index: 1;
            margin-top: 3rem;
            background:
                radial-gradient(900px 280px at 8% 0%, rgba(45, 212, 191, 0.11), transparent 64%),
                radial-gradient(760px 260px at 94% 10%, rgba(88, 101, 242, 0.12), transparent 62%),
                linear-gradient(180deg, rgba(8, 13, 24, 0.98), #030712);
            border-top: 1px solid rgba(226, 232, 240, 0.12);
            color: #f9fafb;
        }

        footer::before {
            content: "";
            position: absolute;
            inset: 0 0 auto;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.45), rgba(167, 139, 250, 0.34), transparent);
            pointer-events: none;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2.35rem 1.25rem 1.45rem;
            display: grid;
            grid-template-columns: minmax(280px, 1.15fr) minmax(380px, 1.55fr);
            gap: 2rem 3rem;
            align-items: start;
        }

        .footer-brand {
            display: grid;
            grid-template-columns: 64px minmax(0, 1fr);
            gap: 1rem;
            align-items: center;
        }

        .footer-logo {
            width: 62px;
            height: 62px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.16);
            box-shadow: 0 18px 38px rgba(0,0,0,0.34);
        }

        .footer-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .footer-title {
            font-size: 1.48rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: 0;
        }

        .footer-brand p {
            max-width: 36rem;
            margin-top: 0.55rem;
            color: rgba(249,250,251,0.68);
            font-size: 0.95rem;
            line-height: 1.55;
        }

        .footer-status {
            display: inline-flex;
            width: fit-content;
            max-width: 100%;
            margin-top: 0.85rem;
            padding: 0.42rem 0.62rem;
            border: 1px solid rgba(125, 211, 252, 0.22);
            border-radius: 8px;
            background: rgba(14, 165, 233, 0.08);
            color: rgba(224, 242, 254, 0.86);
            font-size: 0.78rem;
            font-weight: 800;
            line-height: 1.25;
        }

        .footer-groups {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.5rem;
        }

        .footer-group h2 {
            margin: 0 0 0.75rem;
            color: rgba(186, 230, 253, 0.72);
            font-size: 0.76rem;
            font-weight: 900;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .footer-group a {
            display: flex;
            align-items: center;
            width: max-content;
            max-width: 100%;
            min-height: 30px;
            padding: 0.22rem 0;
            color: rgba(249,250,251,0.78);
            font-size: 0.92rem;
            font-weight: 700;
            line-height: 1.25;
        }

        .footer-group a:hover {
            color: #fff;
            transform: translateX(2px);
        }

        .footer-bottom {
            grid-column: 1 / -1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(148, 163, 184, 0.14);
            color: rgba(249,250,251,0.52);
            font-size: 0.86rem;
        }

        .footer-meta {
            min-width: 0;
            display: grid;
            gap: 0.45rem;
        }

        .footer-copyright {
            color: rgba(249,250,251,0.64);
            font-weight: 800;
        }

        .footer-credit {
            color: rgba(249,250,251,0.48);
            font-size: 0.82rem;
            font-weight: 700;
        }

        .footer-salt {
            display: block;
            max-width: min(58rem, 100%);
            color: rgba(249,250,251,0.62);
            line-height: 1.45;
        }

        .footer-salt code {
            display: inline-block;
            max-width: 100%;
            margin-left: 0.25rem;
            padding: 0.1rem 0.35rem;
            border: 1px solid rgba(148, 163, 184, 0.22);
            border-radius: 6px;
            background: rgba(15, 23, 42, 0.82);
            color: rgba(255,255,255,0.86);
            font-size: 0.78rem;
            overflow-wrap: anywhere;
            vertical-align: middle;
        }

        .footer-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
            justify-content: flex-end;
        }

        .footer-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 38px;
            padding: 0.58rem 0.95rem;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.06);
            color: rgba(255,255,255,0.9);
            font-size: 0.88rem;
            font-weight: 850;
        }

        .footer-btn.primary {
            background: rgba(88, 101, 242, 0.2);
            border-color: rgba(129, 140, 248, 0.34);
        }

        .footer-btn:hover {
            background: rgba(255,255,255,0.10);
            transform: translateY(-1px);
        }

        @media (max-width: 900px) {
            .footer-inner {
                grid-template-columns: 1fr;
            }

            .footer-groups {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .footer-inner {
                padding: 1.5rem 1rem 1.1rem;
            }

            .footer-brand {
                grid-template-columns: 52px minmax(0, 1fr);
            }

            .footer-logo {
                width: 52px;
                height: 52px;
            }

            .footer-groups {
                grid-template-columns: 1fr 1fr;
            }

            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
            }

            .footer-actions {
                justify-content: flex-start;
            }
        }

        /* Login dropdown */
        .nav-dropdown-auth {
            min-width: 340px;
            padding: 0.85rem 0.85rem 0.75rem 0.85rem;
        }

        .nav-dropdown-auth-right {
            left: auto;
            right: 0;
        }

        .auth-title {
            font-size: 0.92rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #e5e7eb;
            margin-bottom: 0.45rem;
        }

        .auth-sub {
            font-size: 0.85rem;
            color: #9ca3af;
            margin-bottom: 0.75rem;
            line-height: 1.35;
        }

        .auth-error {
            background: rgba(220, 38, 38, 0.10);
            border: 1px solid rgba(220, 38, 38, 0.35);
            color: #fecaca;
            padding: 0.55rem 0.65rem;
            border-radius: 0.55rem;
            font-size: 0.85rem;
            margin-bottom: 0.75rem;
        }

        .auth-discord-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 0.6rem 0.9rem;
            border-radius: 0.55rem;
            border: 1px solid rgba(88, 101, 242, 0.45);
            background: #5865f2;
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-align: center;
        }

        .auth-discord-btn:hover {
            background: #4f5bda;
            color: #ffffff;
        }

        .auth-divider {
            margin: 0.8rem 0 0.8rem 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #6b7280;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .auth-divider::before,
        .auth-divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background: #1f2937;
        }

        .form-group { margin-bottom: 0.75rem; }

        .form-label {
            display: block;
            font-size: 0.82rem;
            margin-bottom: 0.25rem;
            color: #e5e7eb;
        }

        .form-input {
            width: 100%;
            padding: 0.55rem 0.6rem;
            border-radius: 0.55rem;
            border: 1px solid #1f2937;
            background: #020617;
            color: #f9fafb;
            font-size: 0.9rem;
        }

        .form-input:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.6);
        }

        .form-actions {
            margin-top: 0.85rem;
            display: flex;
            gap: 0.6rem;
            align-items: center;
            justify-content: space-between;
        }

        .btn-primary {
            padding: 0.55rem 1.05rem;
            border-radius: 0.55rem;
            border: none;
            cursor: pointer;
            background: #16a34a;
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .btn-primary:hover { opacity: 0.9; }

        .btn-secondary-link {
            border: 1px solid #4b5563;
            padding: 0.52rem 0.9rem;
            border-radius: 0.55rem;
            font-size: 0.88rem;
            color: #e5e7eb;
            background: transparent;
            cursor: pointer;
            text-align: center;
            white-space: nowrap;
        }

        .btn-secondary-link:hover { background: #111827; }

        .auth-note {
            margin-top: 0.65rem;
            font-size: 0.78rem;
            color: #6b7280;
            line-height: 1.35;
        }

        /* Shared internal page theme */
        .ww-theme-page {
            position: relative;
            min-height: calc(100vh - var(--ww-nav-height));
            background: #000;
            overflow: visible;
        }

        .ww-theme-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        .ww-theme-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: translateZ(0);
        }

        .ww-theme-overlay {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(1200px 800px at 18% 10%, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.82) 62%, rgba(0,0,0,0.94) 100%),
                linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.82));
        }

        .ww-theme-noise {
            position: absolute;
            inset: 0;
            opacity: 0.10;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
            background-size: 220px 220px;
        }

        .ww-theme-inner {
            position: relative;
            z-index: 2;
            width: min(1200px, calc(100% - 2rem));
            margin: 0 auto;
            padding: clamp(2.4rem, 5vw, 3.4rem) 0 clamp(3rem, 6vw, 4.4rem);
        }

        .ww-theme-stack {
            display: grid;
            gap: 1rem;
        }

        .ww-theme-panel {
            position: relative;
            overflow: visible;
            border-radius: 18px;
            border: 1px solid rgba(255,255,255,0.10);
            background: rgba(8, 10, 14, 0.62);
            backdrop-filter: blur(12px);
            box-shadow: 0 22px 80px rgba(0,0,0,0.60);
        }

        .ww-theme-panel::before {
            content: "";
            position: absolute;
            inset: -2px;
            background: radial-gradient(700px 350px at var(--mx, 30%) var(--my, 20%), rgba(255,255,255,0.12), rgba(255,255,255,0) 55%);
            opacity: 0.75;
            pointer-events: none;
        }

        .ww-theme-panel::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(255,255,255,0.08), rgba(255,255,255,0) 28%, rgba(255,255,255,0.05) 62%, rgba(255,255,255,0));
            opacity: 0.18;
            pointer-events: none;
        }

        .ww-theme-panel > * {
            position: relative;
            z-index: 2;
        }

        .ww-theme-card-pad {
            padding: clamp(1.1rem, 2vw, 1.5rem);
        }

        .ww-theme-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            margin-bottom: 0.7rem;
            font-size: 0.82rem;
            font-weight: 900;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.72);
        }

        .ww-theme-title {
            margin: 0;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            line-height: 1.05;
            letter-spacing: -0.02em;
            font-weight: 900;
            color: rgba(255,255,255,0.94);
        }

        .ww-theme-subtitle {
            margin: 0.75rem 0 0 0;
            max-width: 70ch;
            font-size: 1rem;
            line-height: 1.55;
            color: rgba(255,255,255,0.72);
        }

        .ww-theme-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 0.75rem 1.05rem;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.10);
            color: rgba(255,255,255,0.92);
            font-size: 0.92rem;
            font-weight: 900;
            text-decoration: none;
            transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
            cursor: pointer;
        }

        .ww-theme-btn:hover {
            transform: translateY(-1px);
            background: rgba(255,255,255,0.14);
            border-color: rgba(255,255,255,0.22);
            color: rgba(255,255,255,0.98);
        }

        .ww-theme-btn-primary {
            background: rgba(255,255,255,0.14);
            border-color: rgba(255,255,255,0.22);
        }

        .ww-theme-btn-ghost {
            background: rgba(0,0,0,0.24);
        }

        .ww-theme-btn-discord {
            background: rgba(88, 101, 242, 0.22);
            border-color: rgba(88, 101, 242, 0.35);
        }

        .ww-theme-input,
        .ww-theme-select,
        .ww-theme-textarea {
            width: 100%;
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(0,0,0,0.34);
            color: rgba(255,255,255,0.92);
            padding: 0.75rem 0.9rem;
            outline: none;
            font-size: 0.95rem;
            transition: border-color 120ms ease, background 120ms ease, box-shadow 120ms ease;
        }

        .ww-theme-input::placeholder,
        .ww-theme-textarea::placeholder {
            color: rgba(255,255,255,0.48);
        }

        .ww-theme-input:focus,
        .ww-theme-select:focus,
        .ww-theme-textarea:focus {
            border-color: rgba(255,255,255,0.28);
            background: rgba(0,0,0,0.42);
            box-shadow: 0 0 0 2px rgba(255,255,255,0.08);
        }

        .ww-theme-label {
            display: block;
            margin-bottom: 0.35rem;
            font-size: 0.8rem;
            font-weight: 900;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.70);
        }

        .ww-theme-meta {
            color: rgba(255,255,255,0.62);
            font-size: 0.88rem;
            line-height: 1.45;
        }

        .ww-theme-grid-2 {
            display: grid;
            gap: 1rem;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        @media (max-width: 820px) {
            .ww-theme-grid-2 {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 900px) {
            :root {
                --ww-logo-size: 72px;
                --ww-logo-float: 14px;
                --ww-logo-img: 100%;
                --ww-logo-overlap: 22px;
                --ww-nav-height: 66px;
            }

            .nav-inner {
                padding-inline: 0.75rem;
                min-height: 50px;
                padding-top: 0.3rem;
                padding-bottom: 0.3rem;
                align-items: center;
            }
            .nav-left {
                padding-left: calc(var(--ww-logo-size) + 0.7rem);
            }
            .nav-brand-sub { display: none; }

            .nav-right {
                position: fixed;
                top: 64px;
                left: 0;
                right: 0;
                background: rgba(3, 7, 18, 0.98);
                border-bottom: 1px solid var(--ww-border-soft);
                flex-direction: column;
                align-items: flex-start;
                padding: 0.4rem 0.75rem 1rem 0.75rem;
                gap: 0.65rem;
                max-height: 0;
                overflow: auto;
                transition: max-height 0.22s ease, padding 0.22s ease;
            }

            body.nav-open .nav-right {
                max-height: calc(100vh - 64px);
            }

            .nav-links {
                flex-direction: column;
                width: 100%;
                gap: 0.35rem;
            }

            .nav-item { width: 100%; }

            .nav-link,
            .nav-link-btn {
                width: 100%;
                justify-content: flex-start;
                padding: 0.78rem 0.95rem;
                border-radius: 16px;
            }

            .nav-dropdown {
                position: static;
                border: 1px solid rgba(148, 163, 184, 0.10);
                box-shadow: none;
                padding: 0.45rem;
                margin-top: 0.28rem;
                opacity: 1;
                pointer-events: auto;
                transform: none;
                display: none;
                min-width: 0;
                border-radius: 18px;
                background: rgba(255,255,255,0.03);
            }

            .nav-dropdown-head {
                display: none;
            }

            .nav-expand-shell {
                display: none;
            }

            .nav-dropdown::after {
                display: none;
            }

            .nav-has-dropdown.open .nav-dropdown { display: block; }

            .nav-dropdown a {
                width: 100%;
                border-radius: 14px;
                padding: 0.82rem 0.95rem 0.82rem 2.5rem;
                font-size: 0.88rem;
            }

            .nav-dropdown-label {
                padding: 0.5rem 0.72rem 0.18rem 0.72rem;
            }

            .nav-submenu-panel {
                position: static;
                width: 100%;
                margin-top: 0.35rem;
                padding: 0.35rem;
                border-radius: 16px;
                box-shadow: none;
                opacity: 1;
                pointer-events: auto;
                transform: none;
                display: none;
                border: 1px solid rgba(148, 163, 184, 0.08);
                background: rgba(255,255,255,0.025);
            }

            .nav-submenu-panel::before {
                display: none;
            }

            .nav-submenu-panel::after {
                display: none;
            }

            .nav-submenu-group.is-open > .nav-submenu-panel {
                display: block;
            }

            .nav-submenu-trigger {
                padding: 0.82rem 0.95rem;
                border-radius: 14px;
                background: rgba(255,255,255,0.05);
                justify-content: flex-start;
            }

            .nav-submenu-group.is-open > .nav-submenu-trigger {
                margin-bottom: 0.15rem;
            }

            .nav-submenu-grid a {
                padding-left: 2.35rem;
            }

            .nav-auth {
                width: 100%;
                justify-content: flex-start;
                align-items: stretch;
                flex-direction: column;
                gap: 0.5rem;
            }

            .nav-auth .btn,
            .nav-auth form,
            .nav-dashboard-pill {
                width: 100%;
            }

            .nav-dashboard-segment {
                flex: 1 1 0;
            }

            .nav-dashboard-bell,
            .nav-dashboard-search,
            .nav-dashboard-main {
                width: auto;
                min-width: 0;
            }

            .nav-auth form {
                display: flex !important;
            }

            .nav-auth .btn {
                justify-content: flex-start;
            }
            .nav-toggle { display: inline-flex; }

            .nav-dropdown-auth {
                min-width: 0;
                width: 100%;
                padding: 0.85rem 0.85rem 0.75rem 0.85rem;
                border: 1px solid var(--ww-border-soft);
                border-radius: 0.75rem;
                background: #020617;
            }

            .form-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-primary,
            .btn-secondary-link {
                width: 100%;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .nav-logo::before,
            .nav-logo::after {
                animation: none !important;
            }
        }

        .ww-dm-modal[hidden] {
            display: none !important;
        }

        .ww-dm-modal {
            position: fixed;
            inset: 0;
            z-index: 2000;
        }

        .ww-dm-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(2, 6, 23, 0.78);
            backdrop-filter: blur(8px);
        }

        .ww-dm-modal-dialog {
            position: relative;
            width: min(560px, calc(100vw - 24px));
            max-height: calc(100vh - 32px);
            margin: 16px auto;
            border-radius: 28px;
            border: 1px solid rgba(148, 163, 184, 0.16);
            background: linear-gradient(180deg, rgba(10, 15, 24, 0.98), rgba(5, 9, 17, 0.98));
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
            overflow: auto;
        }

        .ww-dm-modal-head,
        .ww-dm-modal-body,
        .ww-dm-modal-foot {
            padding-inline: 1.25rem;
        }

        .ww-dm-modal-head {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            align-items: flex-start;
            padding-top: 1.15rem;
            padding-bottom: 0.95rem;
            border-bottom: 1px solid rgba(148, 163, 184, 0.12);
        }

        .ww-dm-modal-kicker {
            color: #7dd3fc;
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .ww-dm-modal-title {
            margin-top: 0.35rem;
            font-size: 1.45rem;
            font-weight: 900;
            color: #f8fafc;
            line-height: 1.04;
        }

        .ww-dm-modal-sub {
            margin-top: 0.35rem;
            color: rgba(226, 232, 240, 0.70);
            line-height: 1.5;
            font-size: 0.92rem;
        }

        .ww-dm-modal-close {
            flex: 0 0 auto;
            width: 42px;
            height: 42px;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.16);
            background: rgba(255,255,255,0.05);
            color: #fff;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 800;
        }

        .ww-dm-modal-body {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        .ww-dm-form {
            display: grid;
            gap: 0.9rem;
        }

        .ww-dm-field {
            display: grid;
            gap: 0.38rem;
        }

        .ww-dm-label {
            font-size: 0.79rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(226, 232, 240, 0.70);
        }

        .ww-dm-input,
        .ww-dm-textarea {
            width: 100%;
            border-radius: 16px;
            border: 1px solid rgba(148, 163, 184, 0.18);
            background: rgba(15, 23, 42, 0.82);
            color: #f8fafc;
            padding: 0.9rem 1rem;
            outline: none;
        }

        .ww-dm-textarea {
            min-height: 170px;
            resize: vertical;
        }

        .ww-dm-input:focus,
        .ww-dm-textarea:focus {
            border-color: rgba(125, 211, 252, 0.38);
            box-shadow: 0 0 0 2px rgba(125, 211, 252, 0.08);
        }

        .ww-dm-note,
        .ww-dm-login-copy {
            color: rgba(226, 232, 240, 0.68);
            line-height: 1.55;
            font-size: 0.92rem;
        }

        .ww-dm-status {
            display: none;
            margin-bottom: 0.9rem;
            padding: 0.9rem 1rem;
            border-radius: 16px;
            border: 1px solid rgba(148, 163, 184, 0.16);
        }

        .ww-dm-status.is-open {
            display: block;
        }

        .ww-dm-status.is-error {
            border-color: rgba(248, 113, 113, 0.28);
            background: rgba(69, 10, 10, 0.56);
            color: #fecaca;
        }

        .ww-dm-status.is-success {
            border-color: rgba(34, 197, 94, 0.28);
            background: rgba(5, 46, 22, 0.56);
            color: #dcfce7;
        }

        .ww-dm-modal-foot {
            display: flex;
            justify-content: space-between;
            gap: 0.75rem;
            align-items: center;
            padding-top: 0.3rem;
            padding-bottom: 1.15rem;
            border-top: 1px solid rgba(148, 163, 184, 0.12);
        }

        .ww-dm-actions {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .ww-dm-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 0.78rem 1.05rem;
            border-radius: 16px;
            border: 1px solid rgba(148, 163, 184, 0.16);
            background: rgba(255,255,255,0.06);
            color: #fff;
            font-weight: 800;
            text-decoration: none;
            cursor: pointer;
        }

        .ww-dm-btn-primary {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.94), rgba(34, 197, 94, 0.82));
            border-color: rgba(96, 165, 250, 0.24);
        }

        .ww-dm-btn[disabled] {
            opacity: 0.65;
            cursor: wait;
        }

        .ww-search-modal[hidden] {
            display: none !important;
        }

        .ww-search-modal {
            position: fixed;
            inset: 0;
            z-index: 2100;
        }

        .ww-search-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(2, 6, 23, 0.82);
            backdrop-filter: blur(12px);
        }

        .ww-search-modal-dialog {
            position: relative;
            width: min(760px, calc(100vw - 24px));
            max-height: calc(100vh - 32px);
            margin: 9vh auto 0;
            border-radius: 28px;
            border: 1px solid rgba(148, 163, 184, 0.16);
            background: linear-gradient(180deg, rgba(10, 15, 24, 0.985), rgba(5, 9, 17, 0.99));
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
            overflow: auto;
        }

        .ww-search-modal-head,
        .ww-search-modal-body {
            padding-inline: 1.25rem;
        }

        .ww-search-modal-head {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            align-items: flex-start;
            padding-top: 1.15rem;
            padding-bottom: 0.95rem;
            border-bottom: 1px solid rgba(148, 163, 184, 0.12);
        }

        .ww-search-modal-kicker {
            color: #7dd3fc;
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .ww-search-modal-title {
            margin-top: 0.35rem;
            font-size: 1.45rem;
            font-weight: 900;
            color: #f8fafc;
            line-height: 1.04;
        }

        .ww-search-modal-sub {
            margin-top: 0.35rem;
            color: rgba(226, 232, 240, 0.70);
            line-height: 1.5;
            font-size: 0.92rem;
        }

        .ww-search-modal-close {
            flex: 0 0 auto;
            width: 42px;
            height: 42px;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.16);
            background: rgba(255,255,255,0.05);
            color: #fff;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 800;
        }

        .ww-search-modal-body {
            padding-top: 1rem;
            padding-bottom: 1.15rem;
        }

        .ww-search-form {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 112px;
            gap: 0.85rem;
            align-items: center;
        }

        .ww-search-field {
            display: flex;
            align-items: center;
            min-height: 60px;
            border-radius: 18px;
            border: 1px solid rgba(148, 163, 184, 0.18);
            background: rgba(15, 23, 42, 0.82);
            color: #f8fafc;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
            overflow: hidden;
        }

        .ww-search-icon {
            flex: 0 0 auto;
            padding-left: 1rem;
            color: rgba(229, 231, 235, 0.55);
            font-size: 1rem;
            pointer-events: none;
        }

        .ww-search-input {
            width: 100%;
            min-height: 60px;
            border: none;
            outline: none;
            background: transparent;
            color: #f9fafb;
            font-size: 1rem;
            padding: 0.95rem 1rem 0.95rem 0.7rem;
        }

        .ww-search-input::placeholder {
            color: rgba(229, 231, 235, 0.42);
        }

        .ww-search-submit {
            min-height: 60px;
            border-radius: 18px;
            border: 1px solid rgba(96, 165, 250, 0.24);
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(34, 197, 94, 0.78));
            color: #fff;
            font-size: 0.92rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            cursor: pointer;
        }

        .ww-search-tips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.95rem;
            color: rgba(226, 232, 240, 0.58);
            font-size: 0.82rem;
        }

        .ww-search-tip {
            padding: 0.38rem 0.62rem;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.12);
            background: rgba(255,255,255,0.03);
        }

        @media (max-width: 640px) {
            .ww-dm-modal-dialog {
                width: min(100vw - 16px, 100%);
                margin: 8px auto;
                border-radius: 22px;
                max-height: calc(100vh - 16px);
            }

            .ww-dm-modal-foot {
                flex-direction: column;
                align-items: stretch;
            }

            .ww-dm-actions {
                width: 100%;
                flex-direction: column;
            }

            .ww-dm-btn {
                width: 100%;
            }

            .ww-search-modal-dialog {
                width: min(100vw - 16px, 100%);
                margin: 8vh auto 0;
                border-radius: 22px;
                max-height: calc(100vh - 16px);
            }

            .ww-search-form {
                grid-template-columns: 1fr;
            }

            .ww-search-submit {
                min-height: 52px;
            }
        }


/* Managed random image backgrounds */
.ww-managed-bg,
.ww-scene,
.ww-theme-bg,
.ww-about-bg,
.worldflow-bg,
.wwdj-bg,
.ww-events-bg,
.profile5-bg,
.wls-bg,
.posterflow-bg,
.wwp-bg,
.ww-shop-bg,
.teamx-bg,
.wv-bg,
.wc-bg,
.vup-bg,
.ww-dj-bg {
    background-image: linear-gradient(rgba(2, 6, 23, 0.42), rgba(2, 6, 23, 0.76)), url('/api/background_image.php');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.ww-managed-bg-media {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(2, 6, 23, 0.38), rgba(2, 6, 23, 0.74)), url('/api/background_image.php');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    pointer-events: none;
}

