/* =========================================
   CYBERPUNK FONTS IMPORT
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:wght@400;600;700;800&family=Audiowide&family=Electrolize&display=swap');

/* =========================================
   1. GLOBAL RESET
   ========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    font-family: 'Electrolize', 'Exo 2', sans-serif;
    background-color: #000;
    color: #fff;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Scrollbar - GREENISH BLUE */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #00ff9d; }

/* =========================================
   2. HEADER & NAV
   ========================================= */
.sticky-header {
    position: sticky; top: 0; width: 100%; z-index: 1000;
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    border-bottom: 2px solid #00ff9d;
    height: 80px;
    box-shadow: 0 4px 20px rgba(0, 255, 157, 0.3);
}

.header-container {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    height: 100%; 
    padding: 0 20px;
    max-width: 100%;
}

/* BTC Ticker - GREENISH BLUE */
.btc-ticker {
    font-family: 'Audiowide', cursive;
    font-size: 0.85rem;
    color: #00ff9d;
    background: rgba(0, 255, 157, 0.05);
    padding: 8px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 255, 157, 0.3);
    min-width: 150px;
}
.btc-ticker .label { color: #888; }
.neon-price { 
    color: #00ff9d; 
    font-weight: 700; 
    text-shadow: 0 0 8px #00ff9d; 
}
.change.positive { color: #00ff00; }
.change.negative { color: #ff3366; }

/* Desktop Nav */
.main-nav ul { display: flex; gap: 30px; }
.main-nav a { 
    color: #fff;
    font-family: 'Audiowide', cursive;
    font-size: 1rem;
    position: relative;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

/* Active Page - RED GLOW */
.main-nav a.active {
    color: #ff0040;
    text-shadow: 0 0 15px #ff0040, 0 0 30px #ff0040;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 10px #ff0040, 0 0 20px #ff0040; }
    50% { text-shadow: 0 0 20px #ff0040, 0 0 40px #ff0040, 0 0 60px #ff0040; }
}

.main-nav a:hover { 
    color: #00ff9d;
    text-shadow: 0 0 10px #00ff9d;
}

/* Header Right */
.header-right { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.matrix-rain-container {
    position: relative;
    width: 120px;
    height: 60px;
    overflow: hidden;
    border-left: 2px solid rgba(0, 255, 157, 0.3);
    background: #000;
}

#matrix-rain { 
    display: block; 
    width: 100%; 
    height: 100%; 
}

/* Hamburger - CYBERPUNK STYLE */
.hamburger {
    display: none;
    background: none;
    border: 2px solid #00ff9d;
    color: #00ff9d;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2000;
    padding: 8px 12px;
    border-radius: 4px;
    transition: 0.3s;
}

.hamburger:hover {
     background: rgba(255, 0, 64, 0.1);
     box-shadow: 0 0 20px rgba(255, 0, 64, 0.5);
}

/* =========================================
   3. SIDEBAR (DESKTOP)
   ========================================= */
.sticky-sidebar {
    position: fixed;
    top: 80px;
    left: 0;
    bottom: 0;
    width: 20%;
    background: #000;
    border-right: 2px solid #00ff9d;
    overflow-y: auto;
    z-index: 900;
    padding: 20px;
    text-align: center;
}

.logo { 
    width: 80%;
    max-width: 150px;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.6));
    animation: logo-float 3s ease-in-out infinite;
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.vendor-title {
    font-family: 'Orbitron', sans-serif;
    color: #00ff9d;
    text-align: center;
    margin: 25px 0 10px;
    border-bottom: 2px solid #00ff9d;
    padding-bottom: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* CYBERPUNK VENDOR BUTTONS */
.vendor-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    background: linear-gradient(135deg, #111 0%, #000 100%);
    color: #ff0040;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid #ff0040;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vendor-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.3), transparent);
    transition: left 0.5s;
}

.vendor-btn:hover::before {
    left: 100%;
}

.vendor-btn:hover {
    background: rgba(0, 255, 157, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
    transform: translateX(5px);
}

/* =========================================
   4. MOBILE SIDEBAR
   ========================================= */
.mobile-overlay-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    border-right: 3px solid #00ff9d;
    box-shadow: 0 0 40px rgba(0, 255, 157, 0.5);
    z-index: 9999;
    overflow-y: auto;
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 20px;
}

.mobile-overlay-sidebar.open {
    left: 0;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00ff9d;
}

.mobile-logo {
    width: 100px;
    height: auto;
}

.close-menu {
    background: none;
    border: 2px solid #ff0040;
    color: #ff0040;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.close-menu:hover {
    background: #ff0040;
    color: #fff;
    box-shadow: 0 0 20px #ff0040;
}

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.menu-backdrop.visible {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   5. MAIN CONTENT & SLIDER
   ========================================= */
.main-content {
    margin-left: 20%;
    width: 80%;
    padding: 0;
    min-height: 100vh;
}

/* SLIDER - FULL IMAGE */
.slider {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 30px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

/* =========================================
   6. HERO CTA - CYBERPUNK ANIMATED TITLE
   ========================================= */
.hero-cta {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    background: #000;
    border-bottom: 1px solid #1a1a1a;
    overflow: hidden;
}

.cta-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #0a0000 0%, #001a0a 50%, #000 100%);
    border: 2px solid rgba(0, 255, 157, 0.3);
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(0, 255, 157, 0.3);
    overflow: hidden;
    text-align: center;
    animation: box-breathe 4s ease-in-out infinite;
}

@keyframes box-breathe {
    0%, 100% {
        box-shadow: 0 0 40px rgba(0, 255, 157, 0.3);
        border-color: rgba(0, 255, 157, 0.3);
    }
    50% {
        box-shadow: 0 0 80px rgba(0, 255, 157, 0.6);
        border-color: rgba(0, 255, 157, 0.6);
    }
}

.content {
    position: relative;
    z-index: 3;
}

.glow-layer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.1) 0%, transparent 70%);
    animation: rotate-glow 10s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 255, 157, 0.1) 50%, transparent 100%);
    background-size: 100% 5px;
    animation: scan-move 4s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes scan-move {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* CYBERPUNK ANIMATED TITLE */
.main-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 12px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #00ff9d 0%, #ff0040 50%, #00ffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-shift 4s ease infinite, title-glitch 5s infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 157, 0.8));
}

@keyframes rainbow-shift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

@keyframes title-glitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
    96% { transform: translate(-2px, -2px); }
    98% { transform: translate(2px, 2px); }
}

/* CYBERPUNK ANIMATED SUBTITLE */
.sub-heading {
    font-family: 'Exo 2', sans-serif;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff 0%, #00ff9d 25%, #ff0040 50%, #00ffff 75%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s ease infinite;
    filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.5));
}

@keyframes gradient-flow {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.email-wrapper {
    margin: 25px 0;
    padding: 15px;
    background: rgba(0, 255, 157, 0.05);
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 8px;
}

.email-label {
    color: #fff;
    font-family: 'Audiowide', cursive;
    margin-right: 10px;
    font-size: 1.1rem;
}

.email-link {
    color: #ffffff;
font-family: 'Exo 2', sans-serif;
font-size: 1.2rem;
font-weight: 600;
text-shadow: none;
background: rgba(0, 255, 157, 0.1);
padding: 8px 15px;
border-radius: 6px;
display: inline-block;
border: 1px solid rgba(0, 255, 157, 0.3);
    transition: 0.3s;
}

.email-link:hover {
    text-shadow: 0 0 20px #00ff9d, 0 0 40px #00ff9d;
}

.sub-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ccc;
    margin-top: 20px;
}

.info-text-block {
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 100, 0, 0.05);
    border-left: 3px solid orange;
    border-radius: 5px;
}

/* =========================================
   7. FEATURES SECTION
   ========================================= */
.features {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    text-align: center;
    flex: 1 1 200px;
    max-width: 250px;
    min-width: 180px;
    background: linear-gradient(135deg, #111 0%, #000 100%);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #00ff9d;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 157, 0.1), transparent);
    animation: feature-rotate 3s linear infinite;
}

@keyframes feature-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-box:hover {
    border-color: #00ff9d;
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.5);
    transform: translateY(-10px);
}

.feature-box img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.5));
    position: relative;
    z-index: 2;
}

.feature-box h3 {
    font-family: 'Exo 2', sans-serif;
    color: #00ff9d;
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.feature-box p {
    color: #ccc;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* =========================================
   8. VENDOR ACCESS - 10 BUTTONS WITH TRANSFORMER ANIMATION
   ========================================= */
.vendor-access-section {
    padding: 50px 20px;
    background: #000;
}

.vendor-access-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ff0000 ;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: 0 0 20px #ff0040;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.banners-section {
    margin: 30px 0;
    text-align: center;
}

.banners-section img {
    max-width: 100%;
    height: auto;
    margin: 10px;
    border-radius: 8px;
    border: 2px solid #00ff9d;
}

/* 10 TRANSFORMER BUTTONS */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.tech-btn {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    color: #ff0040 ;
    padding: 18px 20px;
    border: 2px solid #ff0040;
    border-radius: 8px;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.tech-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.4), transparent);
    transition: left 0.6s;
}

.tech-btn:hover::before {
    left: 100%;
}

.tech-btn:hover {
    border-color: #00ff9d;
    background: rgba(255, 0, 64, 0.1);
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.6);
    transform: perspective(1000px) rotateY(10deg) scale(1.05);
}

/* =========================================
   9. TOP PICKS - 6 ITEMS (3+3)
   ========================================= */
.section {
    padding: 50px 20px;
    background: #000;
}

.section h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ff0040;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    border-left: 5px solid #00ff9d;
    padding-left: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-box {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    border: 2px solid #00ff9d;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-box::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 157, 0.2), transparent);
    transition: top 0.6s;
}

.product-box:hover::before {
    top: 100%;
}

.product-box:hover {
    border-color: #00ff9d;
    box-shadow: 0 0 40px rgba(0, 255, 157, 0.5);
    transform: translateY(-10px) scale(1.02);
}

.product-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid #00ff9d;
}

.product-box h3 {
    font-family: 'Exo 2', sans-serif;
    color: #00ff9d;
    margin: 15px 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-box p {
    color: #ccc;
    margin: 10px 0;
}

.order-btn {
    background: linear-gradient(135deg, #00ff9d, #00cc7d);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-btn:hover {
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.8);
    transform: scale(1.05);
}

/* =========================================
   10. BEST SELLERS - 6 ITEMS (3+3)
   ========================================= */
.vendors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.vendor-box {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    border: 2px solid #ff0040;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vendor-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 0, 64, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.vendor-box:hover::after {
    width: 300%;
    height: 300%;
}

.vendor-box:hover {
    border-color: #ff0040;
    box-shadow: 0 0 40px rgba(255, 0, 64, 0.5);
    transform: translateY(-10px) scale(1.02);
}

.vendor-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #ff0040;
    position: relative;
    z-index: 2;
}

.vendor-box h3 {
    font-family: 'Exo 2', sans-serif;
    color: #ff0040;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* =========================================
   11. VENDOR PROFILE CARD - ORIGINAL GOOD STYLE
   ========================================= */
.vendor-profile-card {
    background: linear-gradient(135deg, #0a0a0a, #000);
    border: 2px solid #00ff9d;
    border-radius: 12px;
    padding: 40px;
    margin: 30px 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.4);
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.vendor-profile-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.3), transparent);
    animation: glass-shine 3s infinite;
    z-index: 1;
}

@keyframes glass-shine {
    0% { left: -150%; }
    100% { left: 150%; }
}

.profile-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #00ff9d;
    object-fit: cover;
    z-index: 2;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.6);
}

.profile-info {
    flex: 1;
    min-width: 250px;
    z-index: 2;
    position: relative;
}

.profile-info h1 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff9d;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-shadow: 0 0 15px #00ff9d;
    text-transform: uppercase;
}

.verified-badge {
    color: #00ff9d;
    font-size: 1.1rem;
    margin-left: 10px;
    filter: drop-shadow(0 0 5px #00ff9d);
}

.profile-bio {
    color: #ccc;
    line-height: 1.8;
    margin: 15px 0;
    font-size: 1.05rem;
}

.stats-row {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px 18px;
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 6px;
}

.stat span {
    color: #888;
    font-size: 0.8rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.stat strong {
    color: #fff;
    font-family: 'Audiowide', cursive;
    font-size: 1.2rem;
}

/* =========================================
   12. SERVICE LIST
   ========================================= */
.service-list {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}

.service-item {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    border: 2px solid #00ff9d;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    transition: 0.3s;
}

.service-item:hover {
    border-color: #00ff9d;
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.4);
    transform: translateX(10px);
}

.svc-info {
    flex: 1;
    min-width: 200px;
}

.svc-info h3 {
    font-family: 'Exo 2', sans-serif;
    color: #00ff9d;
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
}

.svc-info p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}


.svc-price {
    font-family: 'Audiowide', cursive;
    color: #00ff9d;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 15px #00ff9d;
}

/* =========================================
   13. PRICING TABLE (VENDOR PAGE OPTION 1)
   ========================================= */
.pricing-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ff0000;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: linear-gradient(135deg, #111, #000);
    border: 2px solid #00ff9d;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: 0.4s;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 0 50px rgba(0, 255, 157, 0.6);
}

.pricing-card h3 {
    font-family: 'Exo 2', sans-serif;
    color: #00ff9d;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.price-tag {
    font-family: 'Exo 2', sans-serif;
color: #00ff9d;
font-weight: 700;
    font-size: 3rem;
    margin: 20px 0;
}

.price-tag small {
    font-size: 1.2rem;
    color: #888;
}

.pricing-card ul {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 10px 0;
    color: #ccc;
    border-bottom: 1px solid #222;
}

.pricing-card ul li::before {
    content: '✓ ';
    color: #00ff9d;
    font-weight: bold;
    margin-right: 10px;
}

/* =========================================
   14. 3-BOX SERVICE SECTION (VENDOR PAGE OPTION 2)
   ========================================= */
.three-box-service {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.three-box-service h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ff0040;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.service-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-box {
    background: linear-gradient(135deg, #0a0000, #000);
    border: 2px solid #ff0040;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 0, 64, 0.1), transparent 30%);
    animation: service-rotate 4s linear infinite;
}

@keyframes service-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 0 50px rgba(255, 0, 64, 0.6);
}

.service-box img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 20px auto;
    border-radius: 50%;
    border: 3px solid #ff0040;
    position: relative;
    z-index: 2;
}

.service-box h3 {
    font-family: 'Exo 2', sans-serif;
    color: #ff0040;
    font-size: 1.6rem;
    margin: 20px 0;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.service-box .price {
    font-family: 'Exo 2', sans-serif;
color: #00ff9d;
font-weight: 700;
    font-size: 2rem;
    margin: 15px 0;
    position: relative;
    z-index: 2;
}

.service-box .order-btn {
    position: relative;
    z-index: 2;
}

/* =========================================
   15. CYBER CARDS (VENDOR PAGE OPTION 3)
   ========================================= */
.cyber-section-title {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: left;
    border-left: 5px solid #00ff9d;
    padding-left: 20px;
    text-transform: uppercase;
}

.cyber-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cyber-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    border: 2px solid #00ff9d;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    position: relative;
    transition: 0.4s;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.cyber-card:hover {
    box-shadow: 0 0 40px rgba(0, 255, 157, 0.6);
    transform: translateY(-12px) rotateZ(2deg);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #000;
    border: 1px solid #00ff9d;
    color: #00ff9d;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.cyber-img-box {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.cyber-img-box img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.cyber-title {
    font-family: 'Exo 2', sans-serif;
    color: #00ff9d;
    font-size: 1.3rem;
    margin: 15px 0 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.cyber-price {
    color: #00ff9d;
    font-family: 'Exo 2', sans-serif;
font-weight: 700;
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin: 12px 0;
}

.cyber-btn {
    background: none;
    border: 2px solid #00ff9d;
    color: #00ff9d;
    padding: 12px 25px;
    border-radius: 6px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 12px;
    text-transform: uppercase;
}

.cyber-btn:hover {
    background: #00ff9d;
    color: #000;
    box-shadow: 0 0 25px #00ff9d;
}

/* =========================================
   16. ELITE CARDS (VENDOR PAGE OPTION 4)
   ========================================= */
.cyber-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.elite-card {
    background: linear-gradient(135deg, #111, #000);
    border: 2px solid #ff0040;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.4s;
}

.elite-card:hover {
    border-color: #ff0040;
    box-shadow: 0 0 35px rgba(255, 0, 64, 0.5);
    transform: scale(1.08) rotate(-2deg);
}

.elite-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #000;
    border: 3px solid #ff0040;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Orbitron', sans-serif;
    color: #ff0040;
    font-weight: bold;
    font-size: 1.2rem;
}

.elite-title {
    font-family: 'Exo 2', sans-serif;
    color: #fff;
    font-size: 1.2rem;
    margin: 12px 0 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.elite-sub {
    color: #888;
    font-size: 0.9rem;
}

/* =========================================
   17. FOOTER
   ========================================= */
footer {
    background: #0a0a0a;
    border-top: 3px solid #00ff9d;
    padding: 35px 20px;
    text-align: center;
    margin-top: 60px;
}

footer p {
    color: #ccc;
    margin-bottom: 15px;
    font-family: 'Electrolize', sans-serif;
}

footer ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

footer ul li a {
    color: #00ff9d;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

footer ul li a:hover {
    text-shadow: 0 0 15px #00ff9d;
}

/* =========================================
   18. RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .main-text {
        font-size: 3.5rem;
        letter-spacing: 8px;
    }
    
    .sub-heading {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 768px) {
    .sticky-header { height: 70px; }
    
    .hamburger { display: block !important; }
    
    .main-nav { display: none; }
    
    .btc-ticker {
        font-size: 0.75rem;
        padding: 6px 10px;
        min-width: 120px;
    }
    
    .matrix-rain-container { display: none; }
    
    .sticky-sidebar { display: none; }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .slider { min-height: 300px; }
    
    .hero-cta { padding: 30px 15px; }
    
    .cta-box { padding: 40px 20px; }
    
    .main-text {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .sub-heading {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .features {
        gap: 15px;
        padding: 30px 15px;
    }
    
    .feature-box {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
        min-width: 140px;
        padding: 15px;
    }
    
    .feature-box img {
        width: 40px;
        height: 40px;
    }
    
    .section { padding: 30px 15px; }
    
    .section h2 { font-size: 1.8rem; }
    
    .vendor-profile-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .profile-logo {
        width: 120px;
        height: 120px;
    }
    
    .stats-row { justify-content: center; }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .products-grid,
    .vendors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-grid,
    .pricing-table,
    .service-boxes,
    .cyber-product-grid,
    .cyber-service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    footer ul {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .main-text {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .sub-heading {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .slider { min-height: 220px; }
    
    .feature-box img {
        width: 35px;
        height: 35px;
    }
}






.small-thumb {
  width: 150px; /* Set your desired width */
  height: auto;  /* This keeps the proportions correct so it doesn't look squished */
}


/* The Cyberpunk Base Button */
.blockonomics-pay-button, .cyber-pay-btn {
    background: transparent;
    color: #ff003c; /* Cyber Red */
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 15px 30px;
    border: 2px solid #ff003c;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
    /* Red Glow */
    box-shadow: 0px 0px 15px rgba(255, 0, 60, 0.4);
    text-shadow: 0px 0px 5px rgba(255, 0, 60, 0.8);
}

/* Red Pulsing Animation */
@keyframes red-pulse {
    0% { box-shadow: 0 0 10px #ff003c, inset 0 0 5px #ff003c; }
    50% { box-shadow: 0 0 25px #ff4d7a, inset 0 0 10px #ff4d7a; }
    100% { box-shadow: 0 0 10px #ff003c, inset 0 0 5px #ff003c; }
}

.blockonomics-pay-button, .cyber-pay-btn {
    animation: red-pulse 2s infinite ease-in-out;
}

/* Hover Glitch Effect */
.blockonomics-pay-button:hover, .cyber-pay-btn:hover {
    background: #ff003c;
    color: #000;
    box-shadow: 0px 0px 40px #ff003c;
    transform: skew(-5deg); /* Cyberpunk slant */
}

/* Adding the "Scanline" overlay effect */
.blockonomics-pay-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    animation: scanline 3s linear infinite;
    opacity: 0.5;
}

@keyframes scanline {
    0% { top: 0; }
    100% { top: 100%; }
}


/* This adds a red neon aura around your PNG */
.cyber-glow-img {
    filter: drop-shadow(0 0 5px #ff003c);
    transition: filter 0.3s ease-in-out, transform 0.2s;
    cursor: pointer;
}

/* Make it pulse slightly */
@keyframes neon-pulse {
    0% { filter: drop-shadow(0 0 5px #ff003c); }
    50% { filter: drop-shadow(0 0 15px #ff003c); }
    100% { filter: drop-shadow(0 0 5px #ff003c); }
}

.cyber-glow-img {
    animation: neon-pulse 2s infinite;
}

/* Hover effect: make it "glitch" or grow */
.cyber-glow-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px #ff003c) brightness(1.2);
}


.service-box .blockonomics-wrapper {
    margin: 20px auto;
    width: 100%;               /* or max-width: 280px; if you want it narrower */
    max-width: 320px;          /* ← adjust this value: try 260px–340px until it fits nicely */
    min-height: 50px;          /* prevent collapse when closed */
    overflow: hidden;          /* hides any overflow/overlap */
    text-align: center;
}




/* Prevent the service-box image styles from affecting Blockonomics content */
.service-box .blockonomics-wrapper img,
.service-box .blockonomics-wrapper * {
    border-radius: 0 !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    object-fit: initial !important;
}

/* Optional: make sure your wrapper looks good */
.service-box .blockonomics-wrapper {
    margin: 20px auto;
    min-height: 50px;          /* adjust depending on your widget height */
}

/* If Blockonomics gives you a <button> with its own id/class, you can style it: */
#pay, .bnomics-btn {           /* common Blockonomics classes/ids */
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 1.1rem;
    background: #ff0040;
    color: white;
    border: none;
    cursor: pointer;
}


/* Force the widget container smaller when it opens */
#blockonomics_widget,
#bitcoinpay,
#payment_area,
.blockonomics-wrapper > div:last-child {   /* catches the dynamic payment div */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    padding: 10px !important;   /* optional breathing room */
}

/* If the widget still overflows the box on mobile */
@media (max-width: 400px) {
    .service-box .blockonomics-wrapper {
        max-width: 100%;
    }
}














/* TABLE CSS */
.vendor-table-container {
  overflow-x: auto;
  margin: 2rem 5%;          /* ← Added left/right margins (5% each side) */
  border: 1px solid #ff0040;
  border-radius: 8px;
  background: #0d0d0d;
  box-shadow: 0 0 20px rgba(255, 0, 64, 0.3);
  max-width: 90%;           /* Optional: prevents it from stretching edge-to-edge on very wide screens */
  margin-left: auto;
  margin-right: auto;       /* Centers the whole container if viewport is wide */
}

h2 {
  text-align: center;       /* ← Centers the region headings */
  color: #ff0040;
  text-shadow: 0 0 10px #ff0040;
  margin: 2.5rem 0 1.5rem;
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vendor-table {
  width: 100%;
  border-collapse: collapse;
  color: #e0e0e0;
  font-family: 'Courier New', monospace;
}

.vendor-table th, .vendor-table td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #ff0040;
}

.vendor-table th {
  background: #1a0000;
  color: #ff0040;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vendor-table tr:nth-child(even) {
  background: #111;
}

.vendor-table tr:hover {
  background: #220000;
}

.order-btn {
  background: transparent;
  color: #ff0040;
  border: 2px solid #ff0040;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.order-btn:hover {
  background: #ff0040;
  color: #000;
  box-shadow: 0 0 15px #ff0040, 0 0 30px #ff0040;
}







/* =========================================
   NEO-RED CROSS-FADE SLIDER (NO BLANKS)
   ========================================= */

.wide-slider-section {
    padding: 60px 20px;
    background: #000;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 450px; /* Adjust height as needed */
    position: relative;
    overflow: hidden;
    border: 2px solid #ff0040;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.5);
}

/* The Images */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Hidden by default */
    transition: opacity 1.5s ease-in-out;
    animation: crossFade 12s infinite; /* 4s per image x 3 */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.2);
}

/* Cyber Terminal Overlay (Scanlines) */
.slider-container::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 3px 100%;
    pointer-events: none;
    z-index: 5;
}

/* CROSS-FADE ANIMATION LOGIC */
/* Slide 1 starts visible, fades at 33%, returns at 100% */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }

@keyframes crossFade {
    0%   { opacity: 0; }
    5%   { opacity: 1; } /* Fade in quickly */
    33%  { opacity: 1; } /* Stay visible for 4s total */
    38%  { opacity: 0; } /* Fade out */
    100% { opacity: 0; }
}

/* Optional: Neon Pulse on the border */
@keyframes neonPulse {
    from { border-color: #ff0040; box-shadow: 0 0 15px #ff0040; }
    to { border-color: #ff4d7a; box-shadow: 0 0 35px #ff0040; }
}
.slider-container { animation: neonPulse 2s infinite alternate; }



/* =========================================
   NEO-RED TERMINAL TABLES (REGIONAL)
   ========================================= */

.region-section {
    padding: 40px 20px;
    background: #000;
}

.table-wrapper {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    border: 1px solid rgba(255, 0, 64, 0.3);
    border-radius: 10px;
    background: rgba(10, 0, 0, 0.6);
    overflow: hidden;
}

.region-header {
    background: linear-gradient(90deg, #ff0040, transparent);
    padding: 15px 25px;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 1.2rem;
    border-bottom: 2px solid #ff0040;
}

.cyber-vendor-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Exo 2', sans-serif;
    color: #ccc;
}

.cyber-vendor-table th {
    text-align: left;
    padding: 15px;
    background: rgba(255, 0, 64, 0.05);
    color: #ff0040;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-bottom: 1px solid #ff0040;
}

.cyber-vendor-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #1a1a1a;
}

.country-cell { color: #fff; font-weight: bold; text-transform: uppercase; }
.currency-cell { color: #ff0040; font-weight: bold; }
.note-cell { font-style: italic; font-size: 0.85rem; color: #888; }
.number-cell { font-family: 'Audiowide', cursive; color: #00ff9d; } /* Neon Green for numbers */
.price-cell { color: #fff; font-size: 1.1rem; font-weight: 800; }

.order-btn-red {
    background: transparent;
    border: 1px solid #ff0040;
    color: #ff0040;
    padding: 8px 18px;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    transition: 0.4s;
    font-size: 0.75rem;
}

.order-btn-red:hover {
    background: #ff0040;
    color: #fff;
    box-shadow: 0 0 15px #ff0040;
}

/* Responsive fix */
@media (max-width: 900px) {
    .table-scroll { overflow-x: auto; }
}












