.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
    display: inline-flex;
  }
        
        @keyframes pulseDot {
             0%, 100% {
                 opacity: 1;
                 transform: scale(1);
                 box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    50% {
      opacity: 0.7;
      transform: scale(1.2);
      box-shadow: 0 0 0 6px rgba(0, 255, 136, 0);
    }
  }

        @keyframes shimmer {
             0%, 100% {
                background-position: 0% 50%;
            }
            25% {
                background-position: 100% 50%;
            }
            50% {
                background-position: 50% 100%;
            }
            75% {
                background-position: 50% 0%;
            }
        }
        
        @keyframes tool-strip-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



    .modern-storefront {
        --primary: #6429ed;
        --primary-dark: #521ac2;
        --primary-light: rgba(100, 41, 237, 0.1);
        --primary-glow: rgba(100, 41, 237, 0.3);
        --dark-bg: #0a0a0f;
        --card-bg: rgba(255, 255, 255, 0.03);
        --border: rgba(255, 255, 255, 0.08);
        --text: #a0a0b0;
        --text-muted: #a0a0b0;
        --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --muted: #8b949e
        
        
        max-width: 100%;
        overflow-x: hidden;
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: var(--text);
    }

    .container-modern {
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px;
    }

    /* Hero Section */
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        margin-bottom: 60px;
        padding: 40px 0;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        background: #3bc13b0d;
        border: 1px solid #00b50033;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        color: #00b500;
        margin-bottom: 35px;
        gap: 2px;
    }

    .hero-title {
        font-size: 56px;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #8957ff, #6429ed, #dd4040, #6429ed, #8957ff) TEXT;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeInUp 0.8s ease, shimmer 5s ease-in-out infinite;
        background-size: 220% 100%;
    }

    .hero-subtitle {
        font-size: 16px;
        color: var(--text-muted);
        margin-bottom: 30px;
        line-height: 1.6;
        margin:0 0 28px;
        min-height:5.4em;
        margin-right:60px;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--primary) !important;
        color: white;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .btn-primary:hover {
        background: var(--primary-dark) !important;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(100, 41, 237, 0.3);
    }

    /* 3D Carousel */
    .carousel-3d {
        position: relative;
        width: 100%;
        height: 400px;
        perspective: 1000px;
    }

    .carousel-track {
        position: relative;
        width: 280px;
        height: 380px;
        margin: 0 auto;
        transform-style: preserve-3d;
    }

    .carousel-card {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
        background: linear-gradient(135deg, #1a1a2e, #16213e);
        border: 1px solid rgba(100, 41, 237, 0.3);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }

    .carousel-card.active {
        transform: translateX(0) scale(1) translateZ(80px);
        opacity: 1;
        z-index: 5;
        box-shadow: 0 20px 40px rgba(100, 41, 237, 0.3);
    }

    .carousel-card.prev {
        transform: translateX(-70%) scale(0.85) translateZ(-50px) rotateY(15deg);
        opacity: 0.8;
        z-index: 4;
    }

    .carousel-card.next {
        transform: translateX(70%) scale(0.85) translateZ(-50px) rotateY(-15deg);
        opacity: 0.8;
        z-index: 4;
    }

    .carousel-card.prev-out {
        transform: translateX(-120%) scale(0.7) translateZ(-100px) rotateY(25deg);
        opacity: 0.3;
        z-index: 3;
    }

    .carousel-card.next-out {
        transform: translateX(120%) scale(0.7) translateZ(-100px) rotateY(-25deg);
        opacity: 0.3;
        z-index: 3;
    }

    .card-image {
        width: 100%;
        height: 70%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .card-footer {
        height: 30%;
        background: linear-gradient(135deg, #2d1b69, #1a0f3a);
        padding: 15px;
        text-align: center;
    }

    .card-footer h4 {
        font-size: 18px;
        color: #29ebff;
        margin-bottom: 5px;
    }

    .card-footer p {
        font-size: 14px;
        font-weight: bold;
    }

    /* Ticker */
    .ticker-wrap {
        background: rgb(100 41 237 / 30%);
        padding: 12px 0;
        margin-bottom: 50px;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        position: relative;
       overflow: hidden;
    }

    .ticker {
        display: flex;
        animation: tickerScroll 30s linear infinite;
        white-space: nowrap;
        position: relative
    }

    .ticker-item-premium {
        padding: 0 20px;
        font-size: 16px;
        font-weight: 500;
        color:black;
    }

    .ticker-highlight {
        color: var(--primary);
        font-weight: 700;
    }

    @keyframes tickerScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* Service Banners */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-bottom: 50px;
    }

    .service-card {
        position: relative;
        background-size: cover;
        background-position: center;
        border-radius: 16px;
        padding: 30px;
        min-height: 220px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .service-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
        z-index: 1;
    }

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

    .service-info {
        position: relative;
        z-index: 2;
        flex: 1;
    }

    .service-title {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 8px;
        color: white;
    }

    .service-desc {
        font-size: 13px;
        color: rgba(255,255,255,0.8);
    }

    .service-btn {
        position: relative;
        z-index: 2;
        background: var(--primary);
        color: white;
        padding: 10px 24px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .service-btn:hover {
        background: var(--primary-dark);
        transform: scale(1.05);
    }

    /* Products Grid */
    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 30px 0 20px;
    }

    .section-title {
        font-size: 28px;
        font-weight: 700;
        font-family: 'Teko', sans-serif;
        text-transform: uppercase;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .product-card {
        background: rgb(194 180 219 / 45%);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        text-decoration: none;
        color: #6e29ed
    }

    .product-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary);
        box-shadow: 0 10px 25px rgba(100, 41, 237, 0.2);
    }

    .product-image {
        width: 100%;
        height: 140px;
        object-fit: cover;
    }

    .product-body {
        padding: 12px;
        text-align: center;
    }

    .product-title {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .product-btn {
        background: rgba(100, 41, 237, 0.2);
        color: var(--primary);
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 11px;
        font-weight: 700;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .product-card:hover .product-btn {
        background: var(--primary);
        color: white;
    }

    /* Hot Badge */
    .hot-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: linear-gradient(45deg, #ff1e56, #ff9800);
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 10px;
        font-weight: 700;
        color: white;
        z-index: 2;
        animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.8; transform: scale(1.05); }
    }

.tool-strip-wrap {
    position: relative;
    overflow: hidden;
}

.tool-strip-wrap::-webkit-scrollbar-track {
    background: var(--bg1);
}

.tool-strip-wrap::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 3px;
}

.tool-strip-inner {
    display: flex;
    gap: 1rem;
    width: max-content;
    padding: 0.5rem 0;
    animation: tool-strip-scroll 40s linear infinite;
}

.tool-card {
    flex-shrink: 0;
    width: 160px;
    padding: 1.5rem 1rem;
    background: #c2b4db73;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: #6429ed4d;
    background: #6429ed4d;
}

.tool-card-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #6429ed4d;
    border: 3px #6429ed4d;
    padding: 0;
    transition: var(--transition);
    overflow: hidden;
}

.tool-card:hover .tool-card-icon {
    border-color: #6429ed4d;
    box-shadow: 0 0 20px var(--neonA-glow);
    transform: scale(1.05);
}

.tool-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-card-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.tool-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: green;
    background: rgba(0, 255, 136, 0.08);
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.15);
}

.tool-card-fallback {
    display: none;
    font-size: 1.25rem;
    color: var(--neonA);
}

.tool-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
}


    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, var(--primary), #a855f7);
        border-radius: 20px;
        padding: 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 40px;
    }

    .cta-content h2 {
        font-size: 32px;
        margin-bottom: 10px;
        color: #29ebff;
    }

    .cta-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .cta-btn {
        padding: 12px 28px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .btn-support {
        background: rgba(0,0,0,0.3);
        color: white;
        border: 1px solid rgba(255,255,255,0.3);
    }

    .cta-btn:hover {
        transform: translateY(-3px);
    }

    /* Responsive */
    @media (max-width: 968px) {
        .hero-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }
        
        .hero-title {
            font-size: 40px;
        }
        
        .carousel-track {
            width: 240px;
            height: 320px;
        }
        
        .products-grid {
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 12px;
        }
        
        .product-image {
            height: 100px;
        }
        
        .cta-section {
            flex-direction: column;
            text-align: center;
        }
    }

    @media (max-width: 568px) {
        .container-modern {
            padding: 15px;
        }
        
        .hero-title {
            font-size: 28px;
        }
        
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .cta-buttons {
            width: 100%;
            flex-direction: column;
        }
        
        .cta-btn {
            justify-content: center;
        }
    }

.eu-embed{
  --bg:#0a0e14;--bg-2:#0d131c;--panel:#111823;--panel-2:#161f2c;--line:#1f2b3a;--line-2:#2b3a4d;
  --ink:#6429ed;--ink-dim:#93a4b8;--ink-faint:#5b6c80;
  --cyan:#19c8f5;--cyan-deep:#00a4cf;--gold:#6429ed;--danger:#ff5c6c;
  --mono:ui-monospace,"SF Mono","Cascadia Code","JetBrains Mono",Consolas,monospace;
  --sans:"Segoe UI",system-ui,-apple-system,"Helvetica Neue",Arial,sans-serif;
  position:relative;
  font-family:var(--sans);line-height:1.6;-webkit-font-smoothing:antialiased}
.eu-embed h1,.eu-embed h2,.eu-embed h3{margin:0;line-height:1.12}
.eu-embed .eu-hex{position:absolute;inset:0;width:100%;height:100%;opacity:.07;pointer-events:none;z-index:0}
.eu-embed .eu-glow{position:absolute;inset:0;pointer-events:none;z-index:0;background:
  radial-gradient(820px 420px at 82% 26%,rgba(25,200,245,.045),transparent 62%)}
.eu-embed .eu-inner{position:relative;z-index:1}
.eu-embed .wrap{max-width:1180px;margin:28px;padding:22px}
.eu-embed .eyebrow{font-family:var(--mono);font-size:12px;letter-spacing:.26em;text-transform:uppercase;
  color:var(--gold);display:inline-flex;align-items:center;gap:9px}
.eu-embed .eyebrow::before{content:"";width:22px;height:1px;background:var(--gold);opacity:.7}
.eu-embed .sec{padding:88px 0;position:relative}
.eu-embed .sec-head{max-width:680px;margin:0 auto 48px;text-align:center;display:flex;flex-direction:column;align-items:center}
.eu-embed .sec-head h2{font-size:clamp(26px,4vw,40px);font-weight:800;letter-spacing:-.02em;margin:16px 0 12px}
.eu-embed .sec-head p{color:var(--ink-dim);font-size:16px;margin:0}
.eu-embed .eu-gear{font-size:30px;color:var(--gold);margin-bottom:12px;display:inline-block}
.eu-embed :focus-visible{outline:2px solid var(--cyan);outline-offset:3px;border-radius:3px}

/* hero */
.eu-embed .hero .wrap{display:grid;grid-template-columns:1.15fr .85fr;gap:40px;align-items:center}
.eu-embed .hero h1{font-size:clamp(32px,5.4vw,50px);font-weight:800;letter-spacing:-.03em;margin:20px 0 18px;background:linear-gradient(90deg, #8957ff, #6429ed, #dd4040, #6429ed, #8957ff) TEXT;background-size:220% 50%;
  -webkit-background-clip:text;background-clip:text;color:transparent;animation:eu-shimmer 5s linear infinite}
.eu-embed .hero h1 .grad{background:linear-gradient(90deg, #8957ff, #6429ed, #dd4040, #6429ed, #8957ff) TEXT;background-size:220% 50%;
  -webkit-background-clip:text;background-clip:text;color:transparent;animation:eu-shimmer 5s linear infinite}
.eu-embed .caret{display:inline-block;width:3px;height:.92em;background:var(--gold);margin-left:4px;vertical-align:-2px;
  animation:eu-blink 1s steps(1) infinite;box-shadow:0 0 8px var(--gold)}
.eu-embed .lead{font-size:clamp(15px,1.8vw,18px);color:var(--ink-dim);max-width:52ch;margin:0 0 28px;min-height:5.4em}
.eu-embed .hero-cta{display:flex;gap:14px;flex-wrap:wrap;align-items:center}
.eu-embed .eu-btn{font-size:14px;letter-spacing:.03em;padding:13px 22px;border-radius:10px;
  font-weight:600;transition:transform .18s,box-shadow .18s;cursor:pointer;border:1px solid transparent;display:inline-flex;align-items:center;gap:10px}
.eu-embed .eu-btn.p{background:#6429ed;color:white;}
.eu-embed .eu-btn.p:hover{background:#521ac2;transform:translateY(-2px);box-shadow:0 10px 25px rgba(100, 41, 237, 0.3)}
.eu-embed .hero-meta{display:flex;gap:26px;margin-top:32px;flex-wrap:wrap}
.eu-embed .hero-meta .m{display:flex;flex-direction:column}
.eu-embed .hero-meta .n{font-family:var(--mono);font-size:25px;font-weight:700;letter-spacing:-.02em}
.eu-embed .hero-meta .l{font-size:11px;color:var(--ink-faint);text-transform:uppercase;letter-spacing:.13em}
.eu-embed .console{position:relative;background:linear-gradient(180deg,var(--panel),var(--bg-2));
  border:1px solid var(--line-2);border-radius:18px;padding:26px;
  box-shadow:0 30px 80px -30px rgba(0,0,0,.8),inset 0 1px 0 rgba(255,255,255,.03)}
.eu-embed .console .bar{display:flex;align-items:center;gap:7px;margin-bottom:18px}
.eu-embed .console .bar i{width:10px;height:10px;border-radius:50%;background:var(--line-2);animation:eu-dot 1.6s ease-in-out infinite}
.eu-embed .console .bar i:nth-child(1){background:var(--danger);color:var(--danger);animation-delay:0s}
.eu-embed .console .bar i:nth-child(2){background:var(--gold);color:var(--gold);animation-delay:.2s}
.eu-embed .console .bar i:nth-child(3){background:var(--cyan);color:var(--cyan);animation-delay:.4s}
@keyframes eu-dot{0%,65%,100%{transform:scale(1);box-shadow:0 0 0 0 rgba(0,0,0,0)}32%{transform:scale(1.32);box-shadow:0 0 12px 1px currentColor}}
.eu-embed .console .bar span{margin-left:8px;font-family:var(--mono);font-size:11px;color:var(--ink-faint);letter-spacing:.08em}
.eu-embed .lockwrap{display:flex;flex-direction:column;align-items:center;gap:16px;padding:14px 0 6px}
.eu-embed .lock-svg{width:128px;height:128px}
.eu-embed .status-line{font-family:var(--mono);font-size:13px;letter-spacing:.1em;color:var(--cyan);text-transform:uppercase;display:flex;align-items:center;gap:9px;min-height:20px}
.eu-embed .status-line .dot{width:8px;height:8px;border-radius:50%;background:var(--cyan);box-shadow:0 0 10px var(--cyan);animation:eu-pulse 1.4s infinite}
.eu-embed .imei-row{width:100%;font-family:var(--mono);font-size:12px;color:var(--ink-faint);border-top:1px dashed var(--line-2);margin-top:8px;padding-top:14px;display:flex;justify-content:space-between}
.eu-embed .imei-row b{color:var(--ink-dim);font-weight:600}
.eu-embed .shackle{transform-origin:66px 58px;animation:eu-unlock 4.6s cubic-bezier(.6,0,.2,1) infinite}
.eu-embed .lock-body-glow{animation:eu-glowcol 4.6s ease-in-out infinite}

/* tools */
.eu-embed .tools{border:0;padding:32px 0;background:transparent;position:relative}
.eu-embed .tools::before,.eu-embed .tools::after{content:"";position:absolute;left:12%;right:12%;height:1px;
  background:linear-gradient(90deg,transparent,rgba(43,58,77,.55),transparent)}
.eu-embed .tools::before{top:0}.eu-embed .tools::after{bottom:0}
.eu-embed .tools-lab{text-align:center;font-family:var(--mono);font-size:11px;letter-spacing:.24em;text-transform:uppercase;color:var(--ink-faint);margin-bottom:18px}
.eu-embed .tools-lab b{color:var(--gold)}

@keyframes eu-scroll{to{transform:translateX(-50%)}}
@keyframes eu-blink{50%{opacity:0}}
@keyframes eu-pulse{0%,100%{opacity:1}50%{opacity:.35}}
@keyframes eu-shimmer{to{background-position:220% 0}}
@keyframes eu-unlock{0%,18%{transform:translateY(0) rotate(0)}30%,66%{transform:translateY(-13px) rotate(-16deg)}80%,100%{transform:translateY(0) rotate(0)}}
@keyframes eu-glowcol{0%,20%{fill:var(--gold)}34%,72%{fill:var(--cyan)}86%,100%{fill:var(--gold)}}

