        :root {
            --primary: #2563EB;
            --primary-dark: #1D4ED8;
            --bg-dark: #0F172A;
            --bg-card: rgba(30, 41, 59, 0.95);
            --bg-sidebar: rgba(15, 23, 42, 0.98);
            --text-main: #F8FAFC;
            --text-muted: #94A3B8;
            --border: rgba(148, 163, 184, 0.2);
            --success: #10B981;
            --warning: #F59E0B;
            --error: #EF4444;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lexend Deca', sans-serif;
            background: var(--bg-dark);
            color: var(--text-main);
            min-height: 100vh;
        }

        .container {
            display: flex;
            min-height: 100vh;
            position: relative;
            z-index: 10;
        }

        .sidebar {
            width: 260px;
            background: var(--bg-sidebar);
            border-right: 1px solid var(--border);
            padding: 24px 16px;
            display: flex;
            flex-direction: column;
            position: sticky;
            top: 0;
            height: 100vh;
            overflow-y: auto;
            z-index: 50;
        }

        .logo {
            position: relative;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0 8px 24px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 24px;
            overflow: visible;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 700;
        }

        .nav-section {
            margin-bottom: 24px;
        }

        .nav-label {
            font-size: 11px;
            text-transform: uppercase;
            color: var(--text-muted);
            padding: 0 12px 8px;
            letter-spacing: 0.5px;
        }

        .nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            border-radius: 8px;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s;
            cursor: pointer;
        }

        .nav-item:hover,
        .nav-item.active {
            background: rgba(37, 99, 235, 0.15);
            color: var(--primary);
        }

        .nav-item svg {
            width: 20px;
            height: 20px;
        }

        .user-info {
            margin-top: auto;
            padding: 16px 12px;
            border-top: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), #8B5CF6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 14px;
        }

        .user-details {
            flex: 1;
        }

        .user-name {
            font-size: 14px;
            font-weight: 600;
        }

        .user-email {
            font-size: 12px;
            color: var(--text-muted);
        }

        .logout-btn {
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
        }

        .logout-btn:hover {
            color: var(--error);
            background: rgba(239, 68, 68, 0.1);
        }

        .main {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .header {
            padding: 20px 32px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--bg-dark);
            /* Ensure opacity */
            z-index: 20;
            position: sticky;
            /* The requested behavior */
            top: 0;
            flex-shrink: 0;
            /* Prevent crushing */
        }

        .page-title {
            font-size: 24px;
            font-weight: 700;
        }

        .header-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
        }

        .btn-secondary {
            background: rgba(148, 163, 184, 0.1);
            color: var(--text-main);
            border: 1px solid var(--border);
        }

        .btn-secondary:hover {
            background: rgba(148, 163, 184, 0.2);
        }

        .btn-success {
            background: var(--success);
            color: white;
        }

        .btn-danger {
            background: var(--error);
            color: white;
        }

        .btn-sm {
            padding: 6px 12px;
            font-size: 12px;
        }

        .content {
            flex: 1;
            padding: 32px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            align-items: stretch;
        }

        .page-view {
            display: none;
        }

        .page-view.active {
            display: block;
            flex: 0 0 auto;
        }

        /* PROFILE PAGE STYLES (ELON EDITION) */
        .elon-panel {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(59, 130, 246, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 4px;
            /* Industrial squared corners */
            margin-bottom: 24px;
            overflow: hidden;
            position: relative;
        }

        .elon-header-strip {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 32px;
            background: linear-gradient(90deg, rgba(30, 41, 59, 1) 0%, rgba(15, 23, 42, 0.9) 100%);
            border-bottom: 1px solid rgba(59, 130, 246, 0.3);
        }

        .elon-badge {
            font-family: 'Courier New', monospace;
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 1px;
            padding: 4px 8px;
            border-radius: 2px;
            font-weight: bold;
            display: inline-block;
            margin-left: 12px;
        }

        .tier-free {
            background: #475569;
            color: #f8fafc;
            border: 1px solid #94a3b8;
        }

        .tier-pro {
            background: rgba(245, 158, 11, 0.1);
            color: #f59e0b;
            border: 1px solid #f59e0b;
        }

        .tier-ultimate {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            border: 1px solid #ef4444;
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
        }

        .elon-stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1px;
            background: rgba(59, 130, 246, 0.1);
            /* Divider color */
        }

        .elon-stat-box {
            background: var(--bg-card);
            padding: 24px;
            display: flex;
            flex-direction: column;
        }

        .elon-stat-label {
            font-size: 11px;
            text-transform: uppercase;
            color: var(--text-muted);
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .elon-stat-value {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
        }

        .elon-section-title {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-bottom: 16px;
            padding: 0 32px;
            margin-top: 32px;
        }

        .elon-feature-list {
            padding: 0 32px 32px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 16px;
        }

        .elon-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: 4px;
            background: rgba(30, 41, 59, 0.4);
        }

        .elon-feature-icon {
            color: var(--success);
        }

        .feature-locked {
            filter: blur(2px);
            opacity: 0.6;
            pointer-events: none;
            user-select: none;
        }

        .blur-overlay-container {
            position: relative;
        }

        .blur-overlay-msg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            background: rgba(15, 23, 42, 0.9);
            border: 1px solid var(--primary);
            padding: 16px 24px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            display: none;
        }

        .locked-section .blur-overlay-msg {
            display: block;
        }

        .kenta-offline-strip {
            background: rgba(239, 68, 68, 0.9);
            color: white;
            padding: 8px 32px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .campaign-block {
            background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
            border: 1px solid #6366f1;
            padding: 32px;
            margin: 0 32px 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .campaign-glow {
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: #6366f1;
            filter: blur(80px);
            opacity: 0.3;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 32px;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px;
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .stat-value {
            font-size: 28px;
            font-weight: 700;
        }

        .section {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 24px;
        }

        .section-header {
            padding: 20px 24px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .section-title {
            font-size: 16px;
            font-weight: 600;
        }

        .section-content {
            padding: 24px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .project-card {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .project-card:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .project-card.create-new {
            border-style: dashed;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 160px;
            color: var(--text-muted);
        }

        .project-card.create-new:hover {
            color: var(--primary);
        }

        .project-card.create-new svg {
            width: 32px;
            height: 32px;
            margin-bottom: 8px;
        }

        .project-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .project-id {
            font-size: 12px;
            color: var(--text-muted);
            background: rgba(0, 0, 0, 0.3);
            padding: 4px 8px;
            border-radius: 4px;
            font-family: monospace;
            margin-bottom: 12px;
            display: inline-block;
        }

        .project-stats {
            display: flex;
            gap: 16px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .project-stat span {
            color: var(--text-main);
            font-weight: 600;
        }

        /* Tabs */
        .tabs {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
            background: rgba(0, 0, 0, 0.2);
            padding: 4px;
            border-radius: 8px;
        }

        .tab {
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            color: var(--text-muted);
            transition: all 0.2s;
            border: none;
            background: none;
        }

        .tab:hover {
            color: var(--text-main);
        }

        .tab.active {
            background: var(--primary);
            color: white;
        }

        .tab .badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 11px;
            margin-left: 6px;
        }

        /* Groups List */
        .groups-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        /* GUARDIANS BANNER (Lore & Philosophy) */
        .guardian-banner {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 24px;
            padding: 20px 0;
            /* No background, just floating elements */
        }

        .guardian-item {
            width: 200px;
            height: 200px;
            position: relative;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            /* Pop effect */
        }

        .guardian-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
            transition: all 0.4s ease;
        }

        .guardian-item:hover {
            transform: translateY(-10px) scale(1.05);
            z-index: 10;
        }

        .guardian-item:hover img {
            filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6)) brightness(1.2);
            /* Underglow */
        }

        .guardian-tooltip {
            position: absolute;
            bottom: -80px;
            /* Push below image */
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            width: 240px;
            background: rgba(15, 23, 42, 0.95);
            border: 1px solid rgba(139, 92, 246, 0.3);
            color: #e2e8f0;
            padding: 12px;
            border-radius: 8px;
            font-size: 12px;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
            pointer-events: none;
            z-index: 20;
        }

        .guardian-item:hover .guardian-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .guardian-tooltip strong {
            display: block;
            color: #c084fc;
            font-size: 13px;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Koharu Panel Styles */
        .koharu-panel {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-top: 24px;
            /* overflow: hidden; REMOVED to prevent clipping */
            display: none;
            /* Controlled by showKoharu toggle */
            animation: slideUp 0.3s ease-out;
        }

        .koharu-panel.active {
            display: block;
        }

        .koharu-header {
            padding: 16px 24px;
            background: rgba(15, 23, 42, 0.4);
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .koharu-badge {
            font-size: 10px;
            font-weight: 800;
            padding: 2px 8px;
            border-radius: 4px;
            background: var(--primary);
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .koharu-section {
            padding: 20px 24px;
            border-bottom: 1px solid var(--border);
        }

        .koharu-section:last-child {
            border-bottom: none;
        }

        .koharu-section-title {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-muted);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .koharu-conn-explain {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 8px;
            padding: 12px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 6px;
            border-left: 3px solid var(--primary);
        }

        .koharu-error-console {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.2);
            padding: 12px;
            border-radius: 6px;
            color: #fca5a5;
            font-size: 12px;
            margin-top: 12px;
            display: none;
        }

        .koharu-input-group {
            margin-bottom: 16px;
        }

        .koharu-input-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        /* Maximized Inputs for Koharu Canon */
        .koharu-textarea-max {
            width: 100%;
            min-height: 120px;
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 12px;
            color: var(--text-main);
            font-family: inherit;
            font-size: 13px;
            resize: vertical;
            box-sizing: border-box;
        }

        .koharu-input-max {
            width: 100%;
            height: 48px;
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 0 12px;
            color: var(--text-main);
            font-family: inherit;
            font-size: 13px;
            box-sizing: border-box;
        }

        .koharu-textarea-max:focus,
        .koharu-input-max:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(15, 23, 42, 1);
        }

        /* Toggle Switch Custom */
        .switch {
            position: relative;
            display: inline-block;
            width: 44px;
            height: 22px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #334155;
            transition: .4s;
            border-radius: 34px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked+.slider {
            background-color: var(--primary);
        }

        /* --- PREMIUM MINIMALIST: PLAYBOOK GENERATOR (Notion/Zapier Style) --- */
        .playbook-canon-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            /* Slate 200 */
            border-radius: 8px;
            /* Tighter radius */
            padding: 40px;
            margin-bottom: 32px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            color: #0f172a;
            /* Slate 900 */
            max-width: 800px;
            /* Constrain width for readability, similar to Notion content */
            margin-left: auto;
            margin-right: auto;
        }

        .playbook-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .playbook-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #0f172a;
            letter-spacing: -0.025em;
            /* Tight tracking for modern feel */
            line-height: 1.2;
        }

        .playbook-subtitle {
            font-size: 16px;
            color: #64748b;
            /* Slate 500 */
            line-height: 1.5;
            max-width: 500px;
            margin: 0 auto;
        }

        .playbook-input-area {
            display: flex;
            flex-direction: column;
            gap: 16px;
            width: 100%;
        }

        .playbook-input {
            width: 100%;
            padding: 16px 20px;
            font-size: 16px;
            line-height: 1.5;
            color: #0f172a;
            background-color: #f8fafc;
            /* Slate 50 */
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            transition: all 0.2s ease;
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            /* Explicit font inheritance */
            min-height: 120px;
            /* Make it bigger */
            resize: vertical;
            /* Allow user to resize vertically */
        }

        .playbook-input::placeholder {
            color: #94a3b8;
            /* Slate 400 */
        }

        .playbook-input:focus {
            outline: none;
            background-color: #ffffff;
            border-color: #3b82f6;
            /* Blue 500 - Professional Focus */
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .playbook-controls {
            display: flex;
            justify-content: flex-end;
            /* Align button to right or keep centered? User mentioned Zapier/Notion. Usually justified or full width. */
            gap: 16px;
            align-items: center;
        }

        /* Updated Button to be cleaner, darker, stronger */
        .playbook-btn {
            background: #BFDBFE;
            /* Soft Blue Pastel */
            color: #0f172a;
            /* Dark Navy */
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 6px;
            border: 1px solid #93C5FD;
            /* Subtle border blending */
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            min-width: 180px;
        }

        .playbook-btn:hover:not(:disabled) {
            background: #93C5FD;
            /* Slightly deeper blue */
            transform: translateY(-1px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .playbook-btn:active:not(:disabled) {
            transform: translateY(0);
        }

        .playbook-btn:disabled {
            background: #94a3b8;
            cursor: not-allowed;
            opacity: 0.8;
        }

        .playbook-disclaimer {
            font-size: 12px;
            color: #94a3b8;
            margin-top: 12px;
            text-align: center;
            font-weight: 500;
        }

        /* Clean Output Area */
        .playbook-output-container {
            margin-top: 40px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            background: #ffffff;
            display: none;
            /* Hidden by default */
            overflow: hidden;
            /* For header curve */
        }

        .playbook-output-container.active {
            display: block;
            animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .playbook-output-header {
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .playbook-output-label {
            font-size: 12px;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .playbook-output {
            white-space: pre-wrap;
            font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
            font-size: 13px;
            line-height: 1.7;
            /* Breathable line height */
            color: #334155;
            /* Slate 700 */
            padding: 24px;
            margin: 0;
            background: #ffffff;
            overflow-x: auto;
        }

        .playbook-copy-btn {
            background: white;
            border: 1px solid #cbd5e1;
            color: #475569;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .playbook-copy-btn:hover {
            background: #f1f5f9;
            color: #0f172a;
            border-color: #94a3b8;
        }

        .playbook-status-msg {
            text-align: center;
            color: #64748b;
            margin-top: 16px;
            font-size: 14px;
            display: none;
            font-weight: 500;
        }

        @keyframes slideUpFade {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        input:checked+.slider:before {
            transform: translateX(22px);
        }

        .koharu-status-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            margin-bottom: 4px;
        }

        .koharu-status-value {
            font-weight: 700;
            font-family: monospace;
        }

        .group-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid var(--border);
            border-radius: 8px;
            transition: all 0.2s;
        }

        .group-item:hover {
            border-color: var(--primary);
        }

        .group-info {
            flex: 1;
            min-width: 0;
        }

        .group-name {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .group-url {
            font-size: 12px;
            color: var(--text-muted);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .group-actions {
            display: flex;
            gap: 8px;
        }

        /* Select */
        .select {
            padding: 10px 16px;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text-main);
            font-size: 14px;
            cursor: pointer;
            min-width: 200px;
        }

        .select:focus {
            outline: none;
            border-color: var(--primary);
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9000;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            width: 100%;
            max-width: 480px;
            margin: 20px;
        }

        .modal-header {
            padding: 20px 24px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 18px;
            font-weight: 600;
        }

        .modal-close {
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
        }

        .modal-close:hover {
            color: var(--text-main);
            background: rgba(255, 255, 255, 0.1);
        }

        .modal-body {
            padding: 24px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text-muted);
        }

        .form-group input {
            width: 100%;
            padding: 12px 16px;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text-main);
            font-size: 14px;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group small {
            display: block;
            margin-top: 6px;
            font-size: 12px;
            color: var(--text-muted);
        }

        .modal-footer {
            padding: 16px 24px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: flex-end;
            gap: 12px;
        }

        .copy-btn {
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 4px;
        }

        .copy-btn:hover {
            background: rgba(37, 99, 235, 0.1);
        }

        .loading-screen {
            position: fixed;
            inset: 0;
            background: var(--bg-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 16px;
            z-index: 100;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 3px solid var(--border);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .empty-state {
            text-align: center;
            padding: 48px;
            color: var(--text-muted);
        }

        /* --- ADMIN COMMAND CENTER (SURGICAL OVERLAY) --- */
        /* NAMESPACED: .acc-wrapper */



        .acc-wrapper {
            background: #0f172a;
            /* Slate 900 */
            color: #f8fafc;
            font-family: 'JetBrains Mono', 'Courier New', monospace;
            /* Industrial feel */
            min-height: 100%;
        }

        .acc-header-strip {
            background: #1e293b;
            border-bottom: 2px solid #ef4444;
            /* Admin Red Alert */
            padding: 16px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .acc-branding {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #ef4444;
            font-weight: 900;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .acc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1px;
            /* Grid lines */
            background: #334155;
            /* Grid border color */
            border: 1px solid #334155;
            margin-bottom: 32px;
        }

        .acc-card {
            background: #0f172a;
            padding: 24px;
        }

        .acc-metric-label {
            font-size: 11px;
            text-transform: uppercase;
            color: #94a3b8;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .acc-metric-value {
            font-size: 24px;
            font-weight: 700;
            color: #f8fafc;
        }

        .acc-status-ok {
            color: #10b981;
        }

        .acc-status-warn {
            color: #f59e0b;
        }

        .acc-status-crit {
            color: #ef4444;
        }

        .acc-btn {
            background: transparent;
            border: 1px solid #475569;
            color: #cbd5e1;
            padding: 6px 12px;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 12px;
            text-transform: uppercase;
        }

        .acc-btn:hover {
            border-color: #94a3b8;
            color: #fff;
        }

        .acc-btn-danger {
            border-color: #ef4444;
            color: #ef4444;
        }

        .acc-btn-danger:hover {
            background: rgba(239, 68, 68, 0.1);
        }

        .acc-logs-console {
            background: #020617;
            border: 1px solid #1e293b;
            padding: 16px;
            height: 300px;
            overflow-y: auto;
            font-size: 12px;
            color: #38bdf8;
        }

        .acc-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }

        .acc-table th {
            text-align: left;
            padding: 12px;
            background: #1e293b;
            color: #94a3b8;
            font-weight: 600;
            border-bottom: 1px solid #334155;
        }

        .acc-table td {
            padding: 12px;
            border-bottom: 1px solid #1e293b;
            color: #e2e8f0;
        }

        .acc-table tr:hover td {
            background: #1e293b;
        }

        /* --- END ADMIN CSS --- */

        .empty-state svg {
            width: 64px;
            height: 64px;
            margin-bottom: 16px;
            opacity: 0.5;
        }

        .empty-state h3 {
            font-size: 18px;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .toast {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 16px 20px;
            display: none;
            align-items: center;
            gap: 12px;
            z-index: 300;
            animation: slideIn 0.3s ease;
        }

        .toast.show {
            display: flex;
        }

        .toast.success {
            border-color: var(--success);
        }

        .toast.error {
            border-color: var(--error);
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .sidebar {
                display: none;
            }

            .content {
                padding: 16px;
            }
        }

        /* Kenta Control Center - Industrial Grade */
        .kenta-dashboard {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
            padding-bottom: 40px;
        }

        .kenta-panel {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 4px;
            padding: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
        }

        .kenta-panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(59, 130, 246, 0.2);
            padding-bottom: 12px;
            margin-bottom: 16px;
        }

        .kenta-panel-title {
            font-family: 'Courier New', monospace;
            text-transform: uppercase;
            font-size: 14px;
            color: #60A5FA;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .kenta-stat-big {
            font-size: 32px;
            font-weight: 700;
            color: #F8FAFC;
            font-family: 'Inter', sans-serif;
        }

        .kenta-stat-label {
            font-size: 11px;
            text-transform: uppercase;
            color: #94A3B8;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        .status-light {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
            box-shadow: 0 0 8px currentColor;
        }

        .status-online {
            background-color: #10B981;
            color: #10B981;
        }

        .status-offline {
            background-color: #EF4444;
            color: #EF4444;
        }

        .status-warning {
            background-color: #F59E0B;
            color: #F59E0B;
        }

        .kenta-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 12px;
        }

        .kenta-table th {
            text-align: left;
            text-transform: uppercase;
            color: #64748B;
            padding: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .kenta-table td {
            padding: 8px;
            color: #E2E8F0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-family: 'Consolas', 'Monaco', monospace;
        }

        .kenta-badge {
            padding: 2px 6px;
            border-radius: 2px;
            font-size: 10px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .kb-green {
            background: rgba(16, 185, 129, 0.2);
            color: #34D399;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .kb-red {
            background: rgba(239, 68, 68, 0.2);
            color: #F87171;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .kb-yellow {
            background: rgba(245, 158, 11, 0.2);
            color: #FBBF24;
            border: 1px solid rgba(245, 158, 11, 0.3);
        }

        .kb-blue {
            background: rgba(59, 130, 246, 0.2);
            color: #60A5FA;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .kenta-log-entry {
            padding: 8px 12px;
            border-left: 3px solid #3B82F6;
            background: rgba(0, 0, 0, 0.2);
            margin-bottom: 8px;
            font-family: monospace;
            font-size: 12px;
        }

        .kenta-log-entry.success {
            border-color: #10B981;
        }

        .kenta-log-entry.error {
            border-color: #EF4444;
        }

        /* Trustable Installer CSS */
        .verification-panel {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 25px;
            margin-top: 20px;
            display: none;
        }

        .checksum-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        .checksum-item {
            background: rgba(30, 41, 59, 0.4);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 15px;
        }

        .checksum-item strong {
            display: block;
            color: var(--text-main);
            margin-bottom: 8px;
            font-size: 14px;
        }

        .checksum-item code {
            display: block;
            font-family: 'Courier New', monospace;
            font-size: 11px;
            word-break: break-all;
            background: rgba(0, 0, 0, 0.3);
            padding: 10px;
            border-radius: 4px;
            margin: 10px 0;
            color: #94A3B8;
        }

        .file-info ul {
            list-style: none;
            padding-left: 0;
        }

        .file-info li {
            padding: 5px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 13px;
            color: #CBD5E1;
        }

        .file-info li strong {
            color: #94A3B8;
            margin-right: 8px;
        }

        .verification-instructions pre {
            background: #111827;
            color: #10B981;
            padding: 12px;
            border-radius: 6px;
            overflow-x: auto;
            font-size: 12px;
            font-family: 'Courier New', monospace;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .copy-btn {
            background: #3B82F6;
            color: white;
            border: none;
            padding: 4px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 11px;
            margin-top: 5px;
        }

        .copy-btn:hover {
            background: #2563EB;
        }

        .download-container {
            width: 100%;
        }

        .trust-badge {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
        }

        .trust-badge .badge {
            background: rgba(16, 185, 129, 0.15);
            color: #34D399;
            border: 1px solid rgba(16, 185, 129, 0.3);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
        }

        .installer-btn {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 16px 24px;
            width: 100%;
            cursor: pointer;
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .installer-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5);
        }

        .installer-btn .btn-content {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .installer-btn .icon {
            font-size: 32px;
        }

        .installer-btn .text-group {
            flex: 1;
        }

        .installer-btn .primary {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .installer-btn .secondary {
            font-size: 12px;
            opacity: 0.9;
        }

        .installer-btn .download-icon {
            font-size: 24px;
            font-weight: 300;
        }

        .installer-btn .hash-preview {
            font-family: 'Courier New', monospace;
            font-size: 10px;
            background: rgba(0, 0, 0, 0.2);
            padding: 4px 8px;
            border-radius: 4px;
            align-self: flex-start;
            margin-left: 56px;
            /* align with text */
            opacity: 0.8;
        }

        .security-note {
            margin-top: 20px;
            padding: 16px;
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: 8px;
            color: #FCD34D;
            font-size: 13px;
        }

        .security-note h5 {
            margin-bottom: 8px;
            color: #FBBF24;
            font-weight: 700;
        }

        .security-note ul {
            padding-left: 20px;
            margin-bottom: 12px;
        }

        .security-note li {
            margin-bottom: 4px;
        }

        .security-note a {
            color: #FBBF24;
            text-decoration: underline;
        }

        .verify-link {
            display: inline-block;
            margin-top: 12px;
            font-size: 12px;
            color: #94A3B8;
            text-decoration: underline;
            cursor: pointer;
        }

        .verify-link:hover {
            color: #CBD5E1;
        }

        .kenta-btn {
            padding: 10px 16px;
            border: 1px solid rgba(59, 130, 246, 0.5);
            background: rgba(59, 130, 246, 0.1);
            color: #60A5FA;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .kenta-btn:hover {
            background: rgba(59, 130, 246, 0.2);
            border-color: #60A5FA;
        }

        .kenta-btn.danger {
            border-color: rgba(239, 68, 68, 0.5);
            background: rgba(239, 68, 68, 0.1);
            color: #F87171;
        }

        .kenta-btn.danger:hover {
            background: rgba(239, 68, 68, 0.2);
        }

        /* Logo Tooltip - Added for User Request */
        .logo {
            position: relative;
        }

        .logo-tooltip {
            position: absolute;
            left: 100%;
            top: 50%;
            transform: translateY(-50%) translateX(8px);
            background: #0F172A;
            border: 1px solid rgba(96, 165, 250, 0.3);
            color: #F8FAFC;
            padding: 8px 14px;
            border-radius: 8px;
            font-family: 'Google Sans', 'Lexend Deca', sans-serif;
            font-weight: 700;
            font-size: 14px;
            white-space: normal;
            text-align: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.6);
            z-index: 1001;
        }

        .logo:hover .logo-tooltip {
            opacity: 1;
            transform: translateY(-50%) translateX(15px);
        }

        .logo-tooltip .tone-1 {
            color: #F8FAFC;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .logo-tooltip .tone-2 {
            color: #60A5FA;
            text-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
        }

        .logo-tooltip .tone-purple {
            color: #C084FC;
            /* Pastel Purple */
            text-shadow: 0 0 10px rgba(192, 132, 252, 0.4);
        }

        /* CAPTAIN'S CABIN WALLPAPER */
        #page-admin-dashboard {
            position: relative;
            overflow: hidden;
            z-index: 10;
        }

        #page-admin-dashboard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/assets/background_wallpaper2.png') center/cover no-repeat;
            opacity: 0.2;
            z-index: -1;
            pointer-events: none;
        }


        /* GLOBAL WALLPAPER 4 (Spaceship Vibe) */
        .wallpaper-layer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: url('/assets/background_wallpaper1.png?v=2') center/cover no-repeat;
            opacity: 0.1;
            z-index: -5;
            pointer-events: none;
            transition: opacity 0.5s ease;
        }

        .wallpaper-layer.hidden {
            opacity: 0;
        }

        /* Remove old admin dashboard wallpaper if present (override) */
        #page-admin-dashboard::before {
            display: none !important;
        }

        /* --- AFFILIATE ASSET TABS --- */
        .asset-tabs {
            display: flex;
            gap: 20px;
            margin-bottom: 24px;
            border-bottom: 1px solid rgba(148, 163, 184, 0.2);
            padding-bottom: 0;
        }

        .asset-tab {
            padding: 10px 16px;
            color: #94a3b8;
            background: transparent;
            border: none;
            border-bottom: 2px solid transparent;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .asset-tab:hover {
            color: #e2e8f0;
        }

        .asset-tab.active {
            color: #3b82f6;
            /* Blue indicator */
            border-bottom: 2px solid #3b82f6;
        }

        /* --- NETFLIX STYLE ASSETS --- */
        .netflix-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
            padding-bottom: 40px;
            min-height: 60vh;
            /* Force expansion */
        }

        .netflix-category-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #e2e8f0;
            margin-bottom: 12px;
            padding-left: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .netflix-row {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 20px 4px;
            scroll-behavior: smooth;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .netflix-row::-webkit-scrollbar {
            display: none;
        }

        .netflix-card {
            flex: 0 0 auto;
            position: relative;
            border-radius: 4px;
            overflow: hidden;
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
            background: #1e293b;
            cursor: pointer;
        }

        .netflix-card:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            z-index: 10;
        }

        /* Aspect Ratios */
        .card-reel {
            width: 160px;
            height: 284px;
            /* 9:16 approx */
        }

        .card-landscape {
            width: 280px;
            height: 157px;
            /* 16:9 approx */
        }

        .card-square {
            width: 240px;
            height: 240px;
        }

        /* Content & Overlay */
        .netflix-media {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .netflix-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
            padding: 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
        }

        .netflix-card:hover .netflix-overlay {
            opacity: 1;
        }

        .netflix-title {
            font-size: 13px;
            font-weight: 600;
            color: white;
            margin-bottom: 8px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .netflix-btn {
            background: white;
            color: black;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            transition: background 0.2s;
            width: 100%;
        }

        .netflix-btn:hover {
            background: #e2e8f0;
        }

        /* Text Specific */
        .text-content-box {
            padding: 16px;
            height: 100%;
            font-size: 11px;
            color: #cbd5e1;
            background: #1e293b;
            display: flex;
            flex-direction: column;
        }

        .text-limit {
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 10;
            -webkit-box-orient: vertical;
            margin-bottom: 8px;
            line-height: 1.5;
        }
/* UFBC HELP CENTER - ELEGANT PEACH & NAVY */
.help-center-panel {
    background: #fff5ee; /* Pastel Peach */
    color: #0B1C2D; /* Navy Dark */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 182, 193, 0.2), 0 0 20px rgba(255, 218, 185, 0.3); /* Underglow backlight */
    font-family: 'Lexend Deca', sans-serif;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 182, 193, 0.2);
}

.help-center-header {
    padding: 60px 40px;
    background: linear-gradient(135deg, #fff5ee 0%, #ffeadb 100%);
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(11, 28, 45, 0.05);
}

.header-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 100px;
    background: rgba(255, 182, 193, 0.4);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.help-center-header h1, .help-center-header div {
    position: relative;
    z-index: 2;
    color: #0B1C2D;
}

.help-center-content {
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.help-section {
    margin-bottom: 50px;
    line-height: 1.7;
}

.help-section p {
    margin-bottom: 12px;
    font-size: 15px;
    opacity: 0.95;
}

.help-h2 {
    font-family: 'Product Sans', sans-serif;
    font-size: 18px;
    letter-spacing: 1.5px;
    color: #0B1C2D;
    border-bottom: 2px solid rgba(11, 28, 45, 0.1);
    padding-bottom: 8px;
    margin-bottom: 20px;
    margin-top: 10px;
    text-transform: uppercase;
}

.panel-inner {
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(11, 28, 45, 0.05);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.1);
}

.help-list {
    padding-left: 20px;
    margin-top: 10px;
}

.help-list li {
    margin-bottom: 8px;
    color: #0B1C2D;
}

.help-list.no-bullet {
    list-style: none;
    padding-left: 0;
}

.help-search-container {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.help-search-input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(11, 28, 45, 0.1);
    background: white;
    color: #0B1C2D;
    font-size: 14px;
}

.help-search-btn {
    padding: 0 24px;
    background: #0B1C2D;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.help-search-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.faq-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(11, 28, 45, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 182, 193, 0.15);
}

.faq-item h3 {
    font-size: 14px;
    color: #0B1C2D;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 13px;
    margin-bottom: 8px;
    color: #475569;
}

.rules-panel {
    background: #0B1C2D;
    color: #fff1e6;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(11, 28, 45, 0.2);
}

.rules-panel .help-h2 {
    color: #fff1e6;
    border-bottom-color: rgba(255, 241, 230, 0.2);
}

.rules-panel .help-list li {
    color: #fff1e6;
}

.faq-row {
    margin-bottom: 24px;
    padding: 15px;
    border-left: 3px solid rgba(11, 28, 45, 0.1);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0 8px 8px 0;
}

.faq-row strong {
    display: block;
    margin-bottom: 6px;
    color: #0B1C2D;
    font-size: 15px;
}

.faq-row p {
    font-size: 14px;
    margin-bottom: 0;
    color: #475569;
}

.help-footer-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(11, 28, 45, 0.1);
    margin-top: 40px;
}
