/* ===== GOOGLE FONTS ===== */
        
        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&family=Exo+2:wght@300;400;600;800&display=swap');
        /* ===== ROOT VARIABLES ===== */
        
        :root {
            --sky: #00BFFF;
            --sky2: #0099CC;
            --sky3: #33D4FF;
            --white: #FFFFFF;
            --light: #F0FAFF;
            --mid: #E0F5FF;
            --dark: #003366;
            --accent: #FF6B35;
            --gold: #FFD700;
            --bg: #F5FBFF;
            --card: rgba(255, 255, 255, 0.92);
            --shadow: 0 8px 32px rgba(0, 191, 255, 0.18);
            --glow: 0 0 24px rgba(0, 191, 255, 0.5);
        }
        /* ===== RESET ===== */
        
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        body {
            background: var(--bg);
            color: var(--dark);
            font-family: 'Exo 2', 'Rajdhani', sans-serif;
            overflow-x: hidden;
            min-height: 100vh;
        }
        /* ===== STAR PARTICLES CANVAS ===== */
        
        #stars-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }
        /* ===== NAVIGATION ===== */
        
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            background: linear-gradient(90deg, rgba(0, 40, 80, 0.97) 0%, rgba(0, 100, 180, 0.95) 100%);
            backdrop-filter: blur(20px);
            border-bottom: 2px solid var(--sky);
            box-shadow: 0 4px 24px rgba(0, 191, 255, 0.3);
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        
        .logo-img-wrap {
            width: 50px;
            height: 50px;
            animation: logoSpin 8s linear infinite;
            animation-play-state: var(--logo-spin-state, paused);
            filter: drop-shadow(0 0 12px var(--sky));
        }
        
        @keyframes logoSpin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            font-weight: 900;
            color: var(--white);
            letter-spacing: 2px;
            text-shadow: 0 0 16px var(--sky);
        }
        
        .logo-text span {
            color: var(--sky3);
        }
        
        .nav-links {
            display: flex;
            gap: 4px;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            padding: 8px 14px;
            border-radius: 8px;
            font-family: 'Exo 2', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.25s;
            position: relative;
            overflow: hidden;
        }
        
        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            right: 50%;
            height: 2px;
            background: var(--sky3);
            transition: all 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--white);
            background: rgba(0, 191, 255, 0.15);
        }
        
        .nav-links a:hover::before {
            left: 10%;
            right: 10%;
        }
        
        .nav-cta {
            background: linear-gradient(135deg, var(--sky), var(--sky2)) !important;
            color: var(--white) !important;
            border-radius: 10px !important;
            box-shadow: 0 4px 16px rgba(0, 191, 255, 0.4);
            animation: ctaPulse 2s ease-in-out infinite;
        }
        
        @keyframes ctaPulse {
            0%,
            100% {
                box-shadow: 0 4px 16px rgba(0, 191, 255, 0.4);
            }
            50% {
                box-shadow: 0 4px 28px rgba(0, 191, 255, 0.8);
            }
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }
        
        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: 0.3s;
        }
        /* ===== ONLINE USERS BADGE ===== */
        
        #online-badge {
            position: fixed;
            bottom: 24px;
            left: 24px;
            z-index: 9999;
            background: linear-gradient(135deg, rgba(0, 30, 60, 0.95), rgba(0, 80, 140, 0.95));
            border: 1.5px solid var(--sky);
            border-radius: 50px;
            padding: 10px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(12px);
            box-shadow: var(--shadow);
            animation: badgeBounce 3s ease-in-out infinite;
            font-family: 'Exo 2', sans-serif;
        }
        
        @keyframes badgeBounce {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }
        
        .online-dot {
            width: 10px;
            height: 10px;
            background: #00FF88;
            border-radius: 50%;
            box-shadow: 0 0 10px #00FF88;
            animation: dotBlink 1.2s ease-in-out infinite;
        }
        
        @keyframes dotBlink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }
        
        #online-badge span {
            color: var(--white);
            font-size: 12px;
        }
        
        #online-count {
            color: #00FF88;
            font-weight: 700;
            font-size: 14px;
        }
        /* ===== PAGES SYSTEM ===== */
        
        .page {
            display: none;
            position: relative;
            z-index: 1;
            min-height: calc(100vh - 70px);
            margin-top: calc(70px + var(--banner-h, 0px));
        }
        
        .page.active {
            display: block;
        }
        /* ===== HOME PAGE ===== */
        
        #page-home {
            min-height: calc(100vh - 70px);
            display: none;
            flex-direction: column;
        }
        
        #page-home.active {
            display: flex;
        }
        :root { --banner-h: 0px; }
        
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #001830 0%, #003366 40%, #0066AA 100%);
        }
        
        .hero-bg-anim {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }
        
        .hero-circle {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(0, 191, 255, 0.2);
            animation: circleExpand 6s ease-in-out infinite;
        }
        
        .hero-circle:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .hero-circle:nth-child(2) {
            width: 500px;
            height: 500px;
            top: -10%;
            right: 5%;
            animation-delay: 1.5s;
        }
        
        .hero-circle:nth-child(3) {
            width: 200px;
            height: 200px;
            bottom: 10%;
            left: 40%;
            animation-delay: 3s;
        }
        
        @keyframes circleExpand {
            0%,
            100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.6;
            }
        }
        
        .hero-content {
            text-align: center;
            z-index: 2;
            padding: 40px 24px;
            max-width: 900px;
        }
        
        .hero-eyebrow {
            font-family: 'Orbitron', sans-serif;
            font-size: 11px;
            letter-spacing: 6px;
            color: var(--sky3);
            text-transform: uppercase;
            margin-bottom: 20px;
            animation: fadeSlideUp 0.8s ease forwards;
        }
        
        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(36px, 7vw, 80px);
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeSlideUp 0.8s 0.2s ease both;
        }
        
        .hero-title .highlight {
            color: var(--sky3);
            text-shadow: 0 0 40px var(--sky);
            position: relative;
        }
        
        .hero-subtitle {
            font-family: 'Exo 2', sans-serif;
            font-size: clamp(15px, 2vw, 20px);
            color: rgba(255, 255, 255, 0.75);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.7;
            animation: fadeSlideUp 0.8s 0.4s ease both;
        }
        
        .hero-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeSlideUp 0.8s 0.6s ease both;
        }
        
        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--sky), #0077AA);
            color: var(--white);
            border: none;
            padding: 16px 36px;
            border-radius: 50px;
            font-family: 'Exo 2', sans-serif;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            letter-spacing: 1px;
            box-shadow: 0 6px 24px rgba(0, 191, 255, 0.5);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
            transition: left 0.5s;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 36px rgba(0, 191, 255, 0.7);
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.5);
            padding: 14px 36px;
            border-radius: 50px;
            font-family: 'Exo 2', sans-serif;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            letter-spacing: 1px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            border-color: var(--sky3);
            color: var(--sky3);
            transform: translateY(-3px);
            background: rgba(0, 191, 255, 0.08);
        }
        /* ===== FILTER BUTTONS (light background, e.g. gallery filters) ===== */
        .filter-btn {
            background: rgba(0, 191, 255, 0.08);
            color: var(--dark);
            border: 2px solid rgba(0, 102, 170, 0.35);
            padding: 9px 22px;
            border-radius: 50px;
            font-family: 'Exo 2', sans-serif;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            letter-spacing: 0.5px;
            transition: all 0.25s;
        }
        .filter-btn:hover {
            border-color: var(--sky);
            background: rgba(0, 191, 255, 0.18);
        }
        .filter-btn.active {
            background: linear-gradient(135deg, var(--sky), var(--sky2));
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 14px rgba(0, 191, 255, 0.35);
        }
        /* ===== STATS STRIP ===== */
        
        .stats-strip {
            background: linear-gradient(90deg, #002244, #003d70, #002244);
            padding: 28px 24px;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            border-top: 1px solid rgba(0, 191, 255, 0.3);
            border-bottom: 1px solid rgba(0, 191, 255, 0.3);
        }
        
        .stat-item {
            text-align: center;
            animation: fadeSlideUp 0.8s ease both;
        }
        
        .stat-num {
            font-family: 'Orbitron', sans-serif;
            font-size: 32px;
            font-weight: 900;
            color: var(--sky3);
            text-shadow: 0 0 20px var(--sky);
            display: block;
        }
        
        .stat-label {
            color: rgba(255, 255, 255, 0.6);
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'Exo 2', sans-serif;
        }
        /* ===== MARQUEE ===== */
        
        .marquee-wrap {
            background: linear-gradient(90deg, var(--sky2), var(--sky), var(--sky2));
            padding: 12px 0;
            overflow: hidden;
            position: relative;
        }
        
        .marquee-track {
            display: flex;
            animation: marqueeScroll 25s linear infinite;
            white-space: nowrap;
        }
        
        .marquee-track:hover {
            animation-play-state: paused;
        }
        
        .marquee-item {
            padding: 0 40px;
            color: var(--white);
            font-family: 'Orbitron', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .marquee-item::after {
            content: '◆';
            color: rgba(255, 255, 255, 0.5);
        }
        
        @keyframes marqueeScroll {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }
        /* ===== FEATURED SERVICES (HOME) ===== */
        
        .featured-services {
            padding: 80px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-tag {
            font-family: 'Orbitron', sans-serif;
            font-size: 11px;
            letter-spacing: 4px;
            color: var(--sky2);
            text-transform: uppercase;
            display: block;
            margin-bottom: 12px;
        }
        
        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(26px, 4vw, 42px);
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }
        
        .section-title span {
            color: var(--sky2);
        }
        
        .section-desc {
            color: #557799;
            font-size: 16px;
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.7;
            font-family: 'Exo 2', sans-serif;
        }
        
        .divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--sky2), var(--sky3));
            border-radius: 2px;
            margin: 20px auto 0;
        }
        
        .feat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        
        .feat-card {
            will-change: transform;
            background: var(--card);
            border: 1.5px solid rgba(0, 191, 255, 0.2);
            border-radius: 20px;
            padding: 32px 28px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.35s;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .feat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 191, 255, 0.06) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s;
        }
        
        .feat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0, 191, 255, 0.25);
            border-color: var(--sky);
        }
        
        .feat-card:hover::before {
            opacity: 1;
        }
        
        .feat-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
            animation: iconBob 3s ease-in-out infinite;
        }
        
        @keyframes iconBob {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-6px);
            }
        }
        
        .feat-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
        }
        
        .feat-desc {
            color: #6688AA;
            font-size: 13.5px;
            line-height: 1.6;
            font-family: 'Exo 2', sans-serif;
        }
        
        .feat-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: linear-gradient(135deg, var(--sky), var(--sky2));
            color: var(--white);
            font-size: 10px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            letter-spacing: 1px;
            font-family: 'Exo 2', sans-serif;
        }
        /* ===== WHY US ===== */
        
        .why-section {
            background: linear-gradient(135deg, #001830 0%, #003366 100%);
            padding: 80px 40px;
            position: relative;
            overflow: hidden;
        }
        
        .why-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 191, 255, 0.12) 0%, transparent 70%);
        }
        
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 28px;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .why-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(0, 191, 255, 0.25);
            border-radius: 16px;
            padding: 28px 24px;
            text-align: center;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }
        
        .why-card:hover {
            background: rgba(0, 191, 255, 0.12);
            border-color: var(--sky);
            transform: translateY(-6px);
        }
        
        .why-icon {
            font-size: 40px;
            margin-bottom: 16px;
            display: block;
        }
        
        .why-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--sky3);
            margin-bottom: 10px;
        }
        
        .why-text {
            color: rgba(255, 255, 255, 0.65);
            font-size: 13px;
            line-height: 1.6;
            font-family: 'Exo 2', sans-serif;
        }
        /* ===== SERVICES PAGE ===== */
        
        #page-services {
            padding: 40px 20px 80px;
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .services-arena {
            position: relative;
            width: 100%;
            min-height: 700px;
            border: 2px solid rgba(0, 191, 255, 0.2);
            border-radius: 24px;
            overflow: hidden;
            background: linear-gradient(135deg, #e8f8ff 0%, #f0faff 50%, #e0f4ff 100%);
            box-shadow: inset 0 0 60px rgba(0, 191, 255, 0.08);
        }
        
        .arena-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Orbitron', sans-serif;
            font-size: 120px;
            font-weight: 900;
            color: rgba(0, 191, 255, 0.04);
            white-space: nowrap;
            pointer-events: none;
            user-select: none;
            letter-spacing: 10px;
        }
        
        .service-chip {
            position: absolute;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(230, 248, 255, 0.97));
            border: 2px solid rgba(0, 191, 255, 0.35);
            border-radius: 14px;
            padding: 14px 18px;
            cursor: grab;
            user-select: none;
            box-shadow: 0 6px 20px rgba(0, 191, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
            transition: box-shadow 0.2s, border-color 0.2s;
            max-width: 180px;
            text-align: center;
            backdrop-filter: blur(10px);
            z-index: 10;
        }
        
        .service-chip:active {
            cursor: grabbing;
        }
        
        .service-chip.dragging {
            box-shadow: 0 16px 48px rgba(0, 191, 255, 0.5), 0 0 0 3px var(--sky);
            border-color: var(--sky);
            z-index: 100;
            cursor: grabbing;
            transform: scale(1.05) rotate(2deg);
        }
        
        .service-chip .chip-icon {
            font-size: 28px;
            display: block;
            margin-bottom: 6px;
            pointer-events: none;
        }
        
        .service-chip .chip-title {
            font-family: 'Exo 2', sans-serif;
            font-size: 11.5px;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.3;
            pointer-events: none;
            letter-spacing: 0.3px;
        }
        
        .service-chip .chip-desc {
            font-size: 10px;
            color: #7799BB;
            margin-top: 4px;
            display: none;
            pointer-events: none;
        }
        
        .service-chip:hover .chip-desc {
            display: block;
        }
        
        .service-chip:hover {
            border-color: var(--sky);
            box-shadow: 0 10px 32px rgba(0, 191, 255, 0.3);
        }
        
        .arena-instruction {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 40, 80, 0.85);
            color: rgba(255, 255, 255, 0.7);
            font-size: 12px;
            padding: 8px 20px;
            border-radius: 20px;
            font-family: 'Exo 2', sans-serif;
            border: 1px solid rgba(0, 191, 255, 0.3);
            letter-spacing: 0.5px;
            backdrop-filter: blur(8px);
            pointer-events: none;
        }
        /* ===== ABOUT PAGE ===== */
        
        #page-about {
            padding: 60px 40px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .about-logo-ring {
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: linear-gradient(135deg, #003366, #0066AA);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 60px rgba(0, 191, 255, 0.4), inset 0 0 40px rgba(0, 191, 255, 0.1);
            position: relative;
        }
        
        .about-logo-ring::before {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 2px dashed rgba(0, 191, 255, 0.4);
            animation: ringRotate 12s linear infinite;
        }
        
        .about-logo-ring::after {
            content: '';
            position: absolute;
            inset: -20px;
            border-radius: 50%;
            border: 1px solid rgba(0, 191, 255, 0.2);
            animation: ringRotate 20s linear infinite reverse;
        }
        
        @keyframes ringRotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        .about-logo-big {
            font-size: 100px;
            animation: logoSpin 8s linear infinite;
            animation-play-state: var(--logo-spin-state, paused);
            filter: drop-shadow(0 0 20px var(--sky));
        }
        
        .about-text h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 32px;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .about-text h2 span {
            color: var(--sky2);
        }
        
        .about-text p {
            color: #557799;
            line-height: 1.8;
            font-size: 15px;
            margin-bottom: 20px;
            font-family: 'Exo 2', sans-serif;
        }
        
        .about-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 28px;
        }
        
        .about-feat-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 18px;
            background: rgba(0, 191, 255, 0.06);
            border-radius: 10px;
            border-left: 3px solid var(--sky);
            transition: all 0.3s;
        }
        
        .about-feat-item:hover {
            background: rgba(0, 191, 255, 0.12);
            transform: translateX(6px);
        }
        
        .about-feat-item span:first-child {
            font-size: 20px;
        }
        
        .about-feat-item span:last-child {
            font-family: 'Exo 2', sans-serif;
            font-size: 14px;
            color: var(--dark);
            font-weight: 600;
        }
        
        .team-section {
            margin-top: 80px;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }
        
        .team-card {
            background: var(--card);
            border: 1.5px solid rgba(0, 191, 255, 0.2);
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.35s;
        }
        
        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 191, 255, 0.25);
        }
        
        .team-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--sky), var(--sky2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin: 0 auto 16px;
            box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
        }
        
        .team-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 6px;
        }
        
        .team-role {
            color: var(--sky2);
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'Exo 2', sans-serif;
        }
        /* ===== CONTACT PAGE ===== */
        
        #page-contact {
            padding: 60px 40px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
        }
        
        .contact-info h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 22px;
            color: var(--dark);
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 18px 20px;
            background: var(--card);
            border: 1.5px solid rgba(0, 191, 255, 0.2);
            border-radius: 14px;
            margin-bottom: 16px;
            box-shadow: var(--shadow);
            transition: all 0.3s;
        }
        
        .contact-item:hover {
            border-color: var(--sky);
            transform: translateX(6px);
        }
        
        .contact-icon {
            font-size: 24px;
            min-width: 30px;
        }
        
        .contact-label {
            font-family: 'Exo 2', sans-serif;
            font-size: 11px;
            color: #99AACC;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        
        .contact-val {
            font-family: 'Exo 2', sans-serif;
            font-size: 15px;
            color: var(--dark);
            font-weight: 600;
        }
        
        .contact-val a {
            color: var(--sky2);
            text-decoration: none;
        }
        
        .contact-val a:hover {
            color: var(--sky);
        }
        
        .contact-form-wrap {
            background: var(--card);
            border: 1.5px solid rgba(0, 191, 255, 0.2);
            border-radius: 24px;
            padding: 40px;
            box-shadow: var(--shadow);
        }
        
        .contact-form-wrap h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            color: var(--dark);
            margin-bottom: 28px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            font-family: 'Exo 2', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 13px 18px;
            border: 1.5px solid rgba(0, 191, 255, 0.25);
            border-radius: 10px;
            background: rgba(240, 250, 255, 0.8);
            font-family: 'Exo 2', sans-serif;
            font-size: 16px;
            color: var(--dark);
            outline: none;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--sky);
            box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.15);
            background: var(--white);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        /* ===== REGISTER PAGE ===== */
        
        #page-register {
            padding: 60px 24px;
            display: none;
            align-items: center;
            justify-content: center;
            min-height: calc(100vh - 70px);
        }
        
        #page-register.active {
            display: flex;
        }
        
        .register-wrap {
            width: 100%;
            max-width: 520px;
        }
        
        .register-card {
            background: var(--card);
            border: 1.5px solid rgba(0, 191, 255, 0.25);
            border-radius: 28px;
            padding: 50px 44px;
            box-shadow: 0 20px 60px rgba(0, 191, 255, 0.18);
            position: relative;
            overflow: hidden;
        }
        
        .register-card::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
        }
        
        .register-logo {
            text-align: center;
            margin-bottom: 32px;
        }
        
        .register-logo .logo-img-wrap {
            margin: 0 auto 12px;
            display: block;
            width: 60px;
            height: 60px;
        }
        
        .register-logo h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            color: var(--dark);
        }
        
        .register-logo p {
            color: #88AACC;
            font-size: 13px;
            margin-top: 6px;
            font-family: 'Exo 2', sans-serif;
        }
        
        .register-success {
            display: none;
            text-align: center;
            padding: 20px;
        }
        
        .register-success .success-icon {
            font-size: 64px;
            display: block;
            margin-bottom: 16px;
            animation: successBounce 0.6s ease;
        }
        
        @keyframes successBounce {
            0% {
                transform: scale(0);
            }
            60% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .register-success h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 22px;
            color: var(--dark);
            margin-bottom: 10px;
        }
        
        .register-success p {
            color: #88AACC;
            font-size: 14px;
            font-family: 'Exo 2', sans-serif;
        }
        /* ===== GALLERY PAGE ===== */
        
        #page-gallery {
            padding: 60px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            border-radius: 16px;
            will-change: transform;
            overflow: hidden;
            position: relative;
            aspect-ratio: 4/3;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: var(--shadow);
            border: 1.5px solid rgba(0, 191, 255, 0.2);
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 16px 40px rgba(0, 191, 255, 0.3);
            border-color: var(--sky);
        }
        
        .gallery-item-bg {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            transition: transform 0.4s;
        }
        
        .gallery-item:hover .gallery-item-bg {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 40, 80, 0.9) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay-text {
            color: var(--white);
            font-family: 'Exo 2', sans-serif;
            font-size: 14px;
            font-weight: 600;
        }
        /* ===== FOOTER ===== */
        
        .site-footer {
            background: linear-gradient(135deg, #001830 0%, #002a50 100%);
            padding: 60px 40px 30px;
            border-top: 2px solid rgba(0, 191, 255, 0.3);
            position: relative;
            z-index: 1;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 50px;
        }
        
        .footer-brand .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            color: var(--white);
            font-weight: 900;
            margin-bottom: 14px;
            display: block;
        }
        
        .footer-brand .logo-text span {
            color: var(--sky3);
        }
        
        .footer-brand p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
            line-height: 1.7;
            font-family: 'Exo 2', sans-serif;
        }
        
        .footer-socials {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .social-btn {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(0, 191, 255, 0.1);
            border: 1px solid rgba(0, 191, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-btn:hover {
            background: rgba(0, 191, 255, 0.25);
            border-color: var(--sky);
            transform: translateY(-3px);
        }
        
        .footer-col h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 13px;
            color: var(--sky3);
            margin-bottom: 18px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-family: 'Exo 2', sans-serif;
            font-size: 13px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .footer-col ul li a:hover {
            color: var(--sky3);
            padding-left: 6px;
        }
        
        .footer-col ul li a::before {
            content: '›';
            color: var(--sky2);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(0, 191, 255, 0.15);
            padding-top: 24px;
            text-align: center;
            color: rgba(255, 255, 255, 0.35);
            font-size: 12px;
            font-family: 'Exo 2', sans-serif;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-bottom a {
            color: var(--sky3);
            text-decoration: none;
        }
        /* ===== TOAST NOTIFICATION ===== */
        
        #toast {
            position: fixed;
            bottom: 90px;
            right: 24px;
            background: linear-gradient(135deg, rgba(0, 40, 80, 0.97), rgba(0, 100, 180, 0.97));
            color: var(--white);
            padding: 14px 16px 14px 22px;
            border-radius: 12px;
            font-family: 'Exo 2', sans-serif;
            font-size: 14px;
            z-index: 99999;
            border: 1px solid var(--sky);
            box-shadow: 0 8px 32px rgba(0, 191, 255, 0.3);
            transform: translateX(120%);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s;
            max-width: 320px;
            display: flex;
            align-items: center;
            gap: 14px;
        }
        #toast-msg { flex: 1; }
        #toast-close {
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            color: var(--white);
            width: 22px;
            height: 22px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 12px;
            line-height: 1;
        }
        #toast-close:hover { background: rgba(255, 255, 255, 0.3); }
        
        #toast.show {
            transform: translateX(0);
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0s;
        }
        /* ===== SCROLL TO TOP ===== */
        
        #scroll-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--sky), var(--sky2));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 9999;
            box-shadow: 0 6px 20px rgba(0, 191, 255, 0.5);
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
            border: none;
        }
        
        #scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        #scroll-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 28px rgba(0, 191, 255, 0.7);
        }
        /* ===== MOBILE ===== */
        
        @media (max-width: 900px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: rgba(0, 30, 60, 0.98);
                padding: 16px;
                gap: 4px;
                border-bottom: 1px solid rgba(0, 191, 255, 0.3);
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                display: block;
                padding: 13px 16px;
                width: 100%;
                box-sizing: border-box;
            }
            .hamburger {
                display: flex;
                min-width: 44px;
                min-height: 44px;
                align-items: center;
                justify-content: center;
            }
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .register-card {
                padding: 36px 24px;
            }
            #page-services,
            #page-about,
            #page-gallery,
            #page-contact {
                padding-left: 20px;
                padding-right: 20px;
            }
            .admin-shell {
                padding: 0 4px;
            }
            .admin-tabs {
                flex-wrap: nowrap;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 6px;
                scrollbar-width: thin;
            }
            .admin-tab-btn {
                flex: 0 0 auto;
                white-space: nowrap;
            }
            .admin-panel-box {
                padding: 18px 16px;
            }
            .gallery-overlay {
                opacity: 1;
                background: linear-gradient(to top, rgba(0, 40, 80, 0.88) 0%, transparent 75%);
            }
        }
        
        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero-btns {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-btns button {
                width: 100%;
            }
            .hero-content {
                padding: 24px 18px;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            #online-badge {
                bottom: 16px;
                left: 16px;
                padding: 8px 14px;
                animation: none;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                background: rgba(0, 40, 75, 0.97);
            }
            #online-badge span {
                font-size: 11px;
            }
            .social-btn {
                width: 44px;
                height: 44px;
            }
            #toast {
                left: 16px;
                right: 16px;
                bottom: 84px;
                max-width: none;
                text-align: center;
                transform: translateY(120%);
            }
            #toast.show {
                transform: translateY(0);
            }
            #scroll-top {
                width: 46px;
                height: 46px;
                bottom: 16px;
                right: 16px;
            }
            .register-card,
            .admin-panel-box {
                border-radius: 16px;
            }
            .register-card {
                padding: 30px 18px;
            }
            .register-logo h2 {
                font-size: 18px;
            }
            .section-title {
                font-size: 28px !important;
            }
            .about-logo-ring {
                width: 180px;
                height: 180px;
            }
            .about-logo-big {
                font-size: 70px;
            }
            #page-about {
                padding: 40px 20px;
            }
            .footer-col h4 {
                margin-top: 8px;
            }
            .admin-color-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ===== SERVICES: MOBILE STATIC GRID (replaces drag-arena on phones) ===== */
        .services-arena.arena-mobile {
            position: static;
            min-height: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 16px;
            box-sizing: border-box;
        }
        .service-chip.chip-static {
            position: static;
            max-width: none;
            width: 100%;
            box-sizing: border-box;
            cursor: default;
        }
        .service-chip.chip-static .chip-desc-mobile {
            display: block !important;
            margin-top: 6px;
        }
        @media (max-width: 420px) {
            .services-arena.arena-mobile {
                grid-template-columns: 1fr;
            }
        }

        /* ===== ANNOUNCEMENT BANNER: sits below fixed navbar, never hidden ===== */
        .site-banner {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
        }

        /* ===== ADMIN TABLES: horizontal scroll wrapper so columns never break layout ===== */
        .admin-table-wrap {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .admin-users-table {
            min-width: 480px;
        }

        /* ===== GLOBAL TOUCH TARGET SAFETY ===== */
        @media (max-width: 900px) {
            button, .btn-primary, .btn-secondary, .btn-login, .btn-logout, .admin-save-btn, .admin-danger-btn {
                min-height: 44px;
            }
            .admin-tab-btn {
                min-height: 40px;
                display: flex;
                align-items: center;
            }
        }
        /* ===== ANIMATIONS ===== */
        
        .fade-in {
            animation: fadeIn 0.6s ease both;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .stagger-1 {
            animation-delay: 0.1s;
        }
        
        .stagger-2 {
            animation-delay: 0.2s;
        }
        
        .stagger-3 {
            animation-delay: 0.3s;
        }
        
        .stagger-4 {
            animation-delay: 0.4s;
        }
        
        .stagger-5 {
            animation-delay: 0.5s;
        }
        
        .stagger-6 {
            animation-delay: 0.6s;
        }
        /* ===== AUTH BUTTONS ===== */
        .btn-login {
            background: transparent;
            border: 2px solid var(--sky);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 50px;
            font-family: 'Exo 2', sans-serif;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            font-size: 14px;
        }
        .btn-logout {
            background: linear-gradient(135deg, var(--accent), #cc4a1f);
            border: none;
            color: var(--white);
            padding: 10px 20px;
            border-radius: 50px;
            font-family: 'Exo 2', sans-serif;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            font-size: 14px;
        }
        .auth-hidden { display: none !important; }
        /* ===== LOGIN PAGE (reuses register-wrap styles) ===== */
        #page-login {
            padding: 60px 24px;
            display: none;
            align-items: center;
            justify-content: center;
            min-height: calc(100vh - 70px);
        }
        #page-login.active {
            display: flex;
        }
        #page-login .register-card { max-width: 420px; }
        .admin-link-row { text-align:center;margin-top:16px;font-size:12px;color:#88AACC;font-family:'Exo 2',sans-serif; }
        /* ===== ADMIN PANEL ===== */
        #page-admin { background: #001427; min-height: 100vh; padding: 90px 20px 60px; }
        .admin-shell { max-width: 1100px; margin: 0 auto; }
        .admin-title { color: var(--white); font-family:'Orbitron',sans-serif; font-size:26px; margin-bottom:6px; }
        .admin-sub { color: var(--sky3); font-size:13px; margin-bottom:24px; font-family:'Exo 2',sans-serif; }
        .admin-tabs { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:24px; }
        .admin-tab-btn { background: rgba(0,191,255,0.1); border:1px solid var(--sky); color:var(--sky3); padding:9px 16px; border-radius:8px; cursor:pointer; font-family:'Exo 2',sans-serif; font-size:12.5px; font-weight:600; }
        .admin-tab-btn.active { background: var(--sky); color:#001427; }
        .admin-panel-box { background: rgba(255,255,255,0.05); border:1px solid rgba(0,191,255,0.25); border-radius:14px; padding:24px; margin-bottom:20px; display:none; }
        .admin-panel-box.active { display:block; }
        .admin-panel-box h3 { color:var(--white); font-family:'Orbitron',sans-serif; font-size:16px; margin-bottom:16px; }
        .admin-field { margin-bottom:14px; }
        .admin-field label { display:block; color:#AACCEE; font-size:12.5px; margin-bottom:5px; font-family:'Exo 2',sans-serif; }
        .admin-field input[type='text'], .admin-field input[type='password'], .admin-field input[type='email'], .admin-field input[type='url'], .admin-field textarea, .admin-field select {
            width:100%; padding:10px 12px; border-radius:8px; border:1px solid rgba(0,191,255,0.3); background:rgba(0,20,40,0.6); color:var(--white); font-family:'Exo 2',sans-serif; font-size:16px;
        }
        .admin-field input[type='color'] { width:60px; height:36px; border-radius:8px; border:1px solid rgba(0,191,255,0.3); background:transparent; cursor:pointer; }
        .admin-field textarea { min-height:90px; resize:vertical; }
        .admin-checkbox-row { display:flex; align-items:center; gap:8px; margin-bottom:10px; }
        .admin-checkbox-row input { width:16px; height:16px; accent-color:var(--sky); }
        .admin-checkbox-row label { color:#AACCEE; font-size:13px; font-family:'Exo 2',sans-serif; }
        .admin-save-btn { background: linear-gradient(135deg, var(--sky), var(--sky2)); color:#fff; border:none; padding:11px 26px; border-radius:8px; font-weight:700; cursor:pointer; font-family:'Exo 2',sans-serif; margin-top:6px; }
        .admin-danger-btn { background: linear-gradient(135deg, #cc3322, #991a10); color:#fff; border:none; padding:11px 26px; border-radius:8px; font-weight:700; cursor:pointer; font-family:'Exo 2',sans-serif; margin-top:6px; }
        .admin-color-grid { display:grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap:14px; }
        .admin-color-item { display:flex; align-items:center; gap:10px; }
        .admin-users-table { width:100%; border-collapse:collapse; font-family:'Exo 2',sans-serif; font-size:12.5px; color:#cde; }
        .admin-users-table th, .admin-users-table td { text-align:left; padding:8px; border-bottom:1px solid rgba(0,191,255,0.15); }
        .admin-user-del { color:#ff6b6b; cursor:pointer; font-weight:700; }
        .admin-log-line { color:#7fa; font-size:12px; font-family:'Exo 2',sans-serif; margin-top:10px; }
        .admin-back-home { color:var(--sky3); cursor:pointer; font-size:13px; font-family:'Exo 2',sans-serif; display:inline-block; margin-bottom:16px; }
        .site-banner { background:linear-gradient(90deg,var(--accent),var(--gold)); color:#221100; text-align:center; padding:9px 12px; font-size:13px; font-weight:700; font-family:'Exo 2',sans-serif; position:relative; z-index:9998; display:none; }
        .site-banner.show { display:block; }
        #maintenance-screen { position:fixed; inset:0; background:#001427; z-index:99999999; display:none; align-items:center; justify-content:center; flex-direction:column; text-align:center; color:#fff; font-family:'Exo 2',sans-serif; padding:20px; }
        #maintenance-screen.show { display:flex; }
/* ===== INLINE ADMIN TEXT EDITING ===== */
        .inline-edit-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            margin-left: 6px;
            vertical-align: middle;
            background: rgba(0, 191, 255, 0.85);
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 11px;
            cursor: pointer;
            line-height: 1;
            box-shadow: 0 2px 6px rgba(0, 191, 255, 0.5);
            z-index: 50;
        }
        .inline-edit-btn:hover { background: var(--sky2); }
        [contenteditable='true'] {
            outline: 2px dashed var(--sky2) !important;
            outline-offset: 3px;
            background: rgba(0, 191, 255, 0.06);
            border-radius: 4px;
        }
        /* ===== CHAT (admin & customer, WhatsApp-style) ===== */
        #admin-chat-modal, #my-chat-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 8, 18, 0.75);
            z-index: 999999999;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }
        #admin-chat-modal.show, #my-chat-modal.show { display: flex; }
        #admin-chat-box, #my-chat-box {
            width: 100%;
            max-width: 480px;
            height: 82vh;
            max-height: 640px;
            background: #0b1626;
            border-radius: 16px;
            border: 1px solid rgba(0, 191, 255, 0.3);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        #admin-chat-header, #my-chat-header {
            background: linear-gradient(135deg, var(--sky), var(--sky2));
            color: #fff;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-family: 'Exo 2', sans-serif;
        }
        #admin-chat-header button, #my-chat-header button {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #fff;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            cursor: pointer;
        }
        #admin-chat-messages, #my-chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 14px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            background: #08111f;
        }
        .chat-bubble {
            max-width: 75%;
            padding: 9px 13px;
            border-radius: 12px;
            font-family: 'Exo 2', sans-serif;
            font-size: 13.5px;
            line-height: 1.4;
            word-break: break-word;
        }
        .chat-bubble.from-user { align-self: flex-start; background: #1c2b40; color: #dce8f5; border-bottom-left-radius: 3px; }
        .chat-bubble.from-admin { align-self: flex-end; background: linear-gradient(135deg, var(--sky), var(--sky2)); color: #fff; border-bottom-right-radius: 3px; }
        .chat-bubble img, .chat-bubble video { max-width: 100%; border-radius: 8px; margin-top: 6px; display: block; }
        .chat-bubble .chat-time { font-size: 10px; opacity: 0.6; margin-top: 4px; }
        #admin-chat-input-row, #my-chat-input-row {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px;
            background: #0b1626;
            border-top: 1px solid rgba(0, 191, 255, 0.2);
        }
        #admin-chat-input-row input[type='text'], #my-chat-input-row input[type='text'] {
            flex: 1;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(0, 191, 255, 0.25);
            color: #fff;
            padding: 10px 14px;
            border-radius: 20px;
            font-size: 16px;
            font-family: 'Exo 2', sans-serif;
        }
        #admin-chat-input-row button, #my-chat-input-row button {
            background: var(--sky);
            border: none;
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            flex-shrink: 0;
            font-size: 16px;
        }
        #my-chat-launcher {
            background: rgba(0, 191, 255, 0.1);
            border: 1px solid rgba(0, 191, 255, 0.3);
            border-radius: 12px;
            padding: 14px 18px;
            color: var(--sky2);
            font-family: 'Exo 2', sans-serif;
            font-weight: 700;
            cursor: pointer;
            margin-top: 18px;
            display: none;
            align-items: center;
            gap: 10px;
        }
        #my-chat-launcher.show { display: inline-flex; }
