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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 2px solid rgba(0, 255, 255, 0.3);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-item {
            cursor: pointer;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-item:hover {
            background: rgba(0, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .nav-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00ffff, #ff00ff);
            transition: width 0.3s ease;
        }

        .nav-item:hover::before {
            width: 100%;
        }

        .nav-item.active {
            background: rgba(0, 255, 255, 0.2);
        }

        .nav-item.active::before {
            width: 100%;
        }

        /* Mobile menu toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: #00ffff;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Main Content */
        .page {
            display: none;
            min-height: 100vh;
            padding-top: 80px;
        }

        .page.active {
            display: block;
        }

        /* Home Page */
        .hero {
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5)); }
            to { filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5)); }
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            color: #000;
        }

        .btn-secondary {
            background: transparent;
            color: #00ffff;
            border: 2px solid #00ffff;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        /* Features Section */
        .features {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            animation: rotate 4s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

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

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 255, 255, 0.6);
            box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #00ffff;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        /* Templates Gallery */
        .templates-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            padding: 2rem 0;
        }

        .template-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 255, 255, 0.2);
        }

        .template-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
        }

        .template-image {
            height: 200px;
            background: linear-gradient(45deg, #1a1a2e, #16213e);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #00ffff;
        }

        .template-info {
            padding: 1.5rem;
        }

        .template-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #00ffff;
        }

        .template-info p {
            opacity: 0.8;
            margin-bottom: 1rem;
        }

        .template-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ff00ff;
        }

        /* Statistics */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            padding: 3rem 2rem;
            background: rgba(0, 0, 0, 0.5);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #00ffff;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        /* About Page */
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 3rem 2rem;
            text-align: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #00ffff;
        }

        .about-content p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
            line-height: 1.8;
        }

        /* Contact Page */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #00ffff;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 8px;
            color: #ffffff;
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00ffff;
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 2rem;
            text-align: center;
            border-top: 2px solid rgba(0, 255, 255, 0.3);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(0, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00ffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(0, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(10, 10, 10, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .features-grid,
            .templates-gallery {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-up {
            animation: fadeInUp 0.8s ease forwards;
        }

        /* Particles background effect */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(0, 255, 255, 0.5);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 1; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 0.5; }
        }
		
		        /* Inputs */
        .cyber-input {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(0,255,255,0.3);
            border-radius: 8px;
            padding: 12px;
            color: #fff;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .cyber-input:focus {
            outline: none;
            border-color: #00ffff;
            box-shadow: 0 0 15px rgba(0,255,255,0.3);
            background: rgba(255,255,255,0.08);
        }
        .cyber-input::placeholder { color: #6b7280; }
		
		        /* Card hover */
        .cyber-card {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(0, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .cyber-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            transition: left 0.5s;
        }
        .cyber-card:hover::before { left: 100%; }
        .cyber-card:hover {
            border-color: rgba(0, 255, 255, 0.4);
            box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        
        /* Buttons */
        .cyber-btn {
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            color: #000;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .cyber-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
        }
        .cyber-btn-outline {
            background: transparent;
            border: 2px solid #00ffff;
            color: #00ffff;
            padding: 10px 22px;
            border-radius: 25px;
        }
        .cyber-btn-outline:hover {
            background: rgba(0, 255, 255, 0.1);
            color: #fff;
        }
		
		 /* Notifications badge */
        .notification-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: linear-gradient(45deg, #ff0080, #ff8000);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
            animation: pulse-notification 2s infinite;
        }
        @keyframes pulse-notification {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
		
		      /* Coming soon overlay */
        .coming-soon-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
		
		
		/* layout остава като при теб */
.shop-wrap{display:grid;grid-template-columns:280px 1fr;gap:20px}
@media (max-width:1024px){.shop-wrap{grid-template-columns:1fr} .sidebar{position:static}}
.sidebar{position:sticky;top:88px;align-self:start}

/* тъмни input/select */
.input-dark,
.select-dark{
  background:#0f172a;
  color:#e5e7eb;
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
}
.input-dark:focus,
.select-dark:focus{
  outline: none;
  box-shadow:0 0 0 3px rgba(0,255,255,.25);
  border-color:rgba(0,255,255,.6);
}

/* реално тъмен dropdown (менюто) */
.select-dark option{
  background:#0b1220;
  color:#e5e7eb;
}

/* скриване на системната стрелка + custom */
.select-dark{
  -webkit-appearance:none;
  appearance:none;
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 -6 24 24" fill="%23e5e7eb"><path d="M7 7l5 5 5-5z"/></svg>');
  background-repeat:no-repeat;
  background-position:right .75rem center;
  background-size:16px 16px;
  padding-right:2.25rem;
}
.select-dark::-ms-expand{display:none;} /* IE/Edge legacy */

/* mobile filter panel */
.filter-panel{
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  background:rgba(255,255,255,.04);
}
.filter-summary{
  list-style:none;
  cursor:pointer;
  padding:.75rem 1rem;
  font-weight:600;
  color:#e5e7eb;
  position:relative;
}
.filter-summary::marker{display:none;}
.filter-summary::after{
  content:"";
  position:absolute;
  right:12px; top:50%; transform:translateY(-50%);
  width:16px; height:16px;
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 -6 24 24" fill="%23e5e7eb"><path d="M7 7l5 5 5-5z"/></svg>');
  background-size:16px 16px; background-repeat:no-repeat;
  opacity:.9;
}
.filter-panel[open] .filter-summary::after{transform:translateY(-50%) rotate(180deg);}
.filter-body{padding: .5rem 1rem 1rem}

/* cards / buttons / grid — от твоя стил */
.card{background:#0b1220;border:1px solid rgba(0,255,255,.25);border-radius:14px;overflow:hidden;display:flex;flex-direction:column;transition:transform .2s, box-shadow .2s, border-color .2s}
.card:hover{transform:translateY(-3px);border-color:rgba(0,255,255,.6);box-shadow:0 0 10px rgba(0,255,255,.35), 0 0 18px rgba(255,0,255,.25)}
.card img,.noimg{width:100%;aspect-ratio:16/9;object-fit:cover;background:#111827;display:block}
.noimg{display:flex;align-items:center;justify-content:center;color:#6b7280}

.pill{display:inline-flex;align-items:center;gap:6px;border:1px solid rgba(255,255,255,.08);border-radius:999px;padding:.15rem .5rem;font-size:.7rem;color:#e5e7eb;background:rgba(255,255,255,.04)}
.badge{display:inline-block;background:rgba(255,255,255,.06);color:#fff;border:1px solid rgba(255,255,255,.12);border-radius:6px;padding:.15rem .4rem;font-size:.7rem;font-weight:700}

.grid-prods{display:grid;gap:16px;grid-template-columns:repeat(auto-fill,minmax(240px,1fr))}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:.5rem .75rem;border-radius:10px;border:1px solid rgba(255,255,255,.1);background:#0f172a;font-weight:700;font-size:.85rem;color:#e5e7eb}
.btn:hover{background:#111c36}
.btn.primary{background-image:linear-gradient(90deg,#00ffff,#ff00ff);color:#0a0a0a;border-color:transparent}
.btn.primary:hover{filter:brightness(1.05)}

.rating{display:flex;align-items:center;gap:4px;margin:.35rem 0}
.rating svg{width:16px;height:16px}
.rating span{margin-left:2px;font-size:.75rem;color:#9ca3af}

/* line-clamp без plugin */
.line-clamp-2{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}

    .card{background:#0b1220;border:1px solid rgba(0,255,255,.25);border-radius:14px}
    .card-hover{transition:transform .2s, box-shadow .2s, border-color .2s}
    .card-hover:hover{transform:translateY(-3px);border-color:rgba(0,255,255,.6);box-shadow:0 0 10px rgba(0,255,255,.35),0 0 18px rgba(255,0,255,.25)}
    .btnX{display:inline-flex;align-items:center;justify-content:center;padding:.6rem .9rem;border-radius:12px;border:1px solid rgba(255,255,255,.1);background:#0f172a;font-weight:700;font-size:.9rem;color:#e5e7eb;transition:.2s}
    .btnX:hover{background:#111c36;transform:translateY(-2px)}
    .btnXL{display:inline-flex;align-items:center;justify-content:center;height:48px;padding:0 18px;border-radius:12px;font-weight:800}
    .btnXL.primary{background-image:linear-gradient(90deg,#00ffff,#ff00ff);color:#0a0a0a;border:0}
    .btnXL.ghost{background:#0f172a;border:1px solid rgba(255,255,255,.1);color:#e5e7eb}
    .btnXL.ghost:hover{background:#111c36}
    .pillX{display:inline-flex;align-items:center;gap:6px;border:1px solid rgba(255,255,255,.08);border-radius:999px;padding:.15rem .6rem;font-size:.72rem;color:#e5e7eb;background:rgba(255,255,255,.04)}
    .ratingX{display:flex;align-items:center;gap:4px}
    .ratingX svg{width:16px;height:16px}
    .tag-pill{display:inline-flex;align-items:center;padding:.25rem .55rem;border-radius:999px;font-size:.75rem;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);color:#e5e7eb}
    .line-clamp-3{-webkit-line-clamp:3;display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}

    /* Media / video block */
    .media-card{background:#121826;border:1px solid rgba(255,255,255,.08);border-radius:14px;overflow:hidden}
    .media-card .frame{position:relative;aspect-ratio:16/9;background:#0b1220}
    .media-card .empty{min-height:260px;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:28px;text-align:center;gap:10px}
    .media-card .empty .ico{width:64px;height:64px;border-radius:999px;display:grid;place-items:center;font-size:28px;color:#cbd5e1;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12)}
    .media-card .empty h4{color:#e5e7eb;font-weight:700}
    .media-card .empty p{color:#a3aab8;font-size:.95rem}

    /* Reviews */
    .review-card{background:#0b1220;border:1px solid rgba(255,255,255,.08);border-radius:14px}
    .review-item{border-top:1px solid rgba(255,255,255,.06)}
    .review-item:first-child{border-top:0}

    /* Right price box */
    .price-card{background:#121826;border:1px solid rgba(0,255,255,.18);border-radius:14px;padding:16px}
    .big-price{font-size:1.4rem;font-weight:800}
	
	
	