/*
Theme Name: Futuristic Cyber
Author: Gemini
Description: Tema WordPress Futuristik dengan gaya Dark Mode & Neon Glow.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;600;700&display=swap');

:root {
  --bg-color: #080711;
  --card-bg: rgba(20, 18, 38, 0.7);
  --primary: #00f3ff;
  --secondary: #ff0055;
  --text: #e2e8f0;
  --glow-primary: 0 0 15px rgba(0, 243, 255, 0.4);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 243, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(ff, 0, 85, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
  text-shadow: 0 0 8px var(--secondary);
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
  background: rgba(8, 7, 17, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-title a {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  text-shadow: var(--glow-primary);
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.main-navigation a {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
}

/* Main Container & Grid */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

/* Futuristic Card Design */
.card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: 8px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

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

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.card h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.meta-info {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 0, 85, 0.2);
  font-size: 14px;
}


/* ==========================================================================
   WOOCOMMERCE FUTURISTIC STYLES
   ========================================================================== */

/* Halaman Katalog Produk & Loop */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 25px !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product {
  background: var(--card-bg) !important;
  border: 1px solid rgba(0, 243, 255, 0.2) !important;
  border-radius: 8px !important;
  padding: 20px !important;
  margin: 0 !important;
  width: 100% !important;
  float: none !important;
  backdrop-filter: blur(5px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
  transition: all 0.3s ease !important;
}

.woocommerce ul.products li.product:hover {
  border-color: var(--primary) !important;
  box-shadow: var(--glow-primary) !important;
  transform: translateY(-5px);
}

.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 18px !important;
  color: #fff !important;
  margin-top: 15px !important;
}

/* Harga / Price */
.woocommerce .price,
.woocommerce ul.products li.product .price {
  color: var(--primary) !important;
  font-family: 'Orbitron', sans-serif !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  text-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
}

.woocommerce .price del {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* Tombol / Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: transparent !important;
  color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  font-family: 'Orbitron', sans-serif !important;
  text-transform: uppercase !important;
  border-radius: 4px !important;
  padding: 12px 20px !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--primary) !important;
  color: #000 !important;
  box-shadow: 0 0 15px var(--primary) !important;
}

/* Badge Diskon / Sale Badge */
.woocommerce span.onsale {
  background-color: var(--secondary) !important;
  color: #fff !important;
  font-family: 'Orbitron', sans-serif !important;
  box-shadow: 0 0 10px var(--secondary);
  border-radius: 0 !important;
  padding: 5px 10px !important;
  min-height: auto !important;
  line-height: 1 !important;
}

/* Halaman Single Product */
.woocommerce div.product .product_title {
  font-family: 'Orbitron', sans-serif !important;
  color: #fff !important;
  font-size: 32px !important;
}

.woocommerce div.product div.summary {
  background: var(--card-bg);
  padding: 30px;
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: 8px;
}

/* Form Input & Select */
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  background: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(0, 243, 255, 0.3) !important;
  color: var(--text) !important;
  padding: 10px !important;
  border-radius: 4px !important;
}

.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus {
  border-color: var(--primary) !important;
  outline: none !important;
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3) !important;
}

/* Halaman Keranjang (Cart) & Checkout */
.woocommerce table.shop_table {
  background: var(--card-bg) !important;
  border: 1px solid rgba(0, 243, 255, 0.2) !important;
  border-radius: 8px !important;
  color: var(--text) !important;
}

.woocommerce table.shop_table th {
  font-family: 'Orbitron', sans-serif !important;
  color: var(--primary) !important;
  border-bottom: 1px solid rgba(0, 243, 255, 0.2) !important;
}

.woocommerce table.shop_table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.woocommerce-cart .cart-collaterals .cart_totals, 
.woocommerce-checkout #order_review {
  background: var(--card-bg) !important;
  padding: 20px !important;
  border: 1px solid rgba(0, 243, 255, 0.2) !important;
}



/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE MENU
   ========================================================================== */

/* Layout Dasar & Gambar Responsif */
img, video {
  max-width: 100%;
  height: auto;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: 4px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--glow-primary);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   Tablet & Perangkat Kecil (Maksimal 768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  
  /* Header & Navigation */
  .site-header {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-navigation {
    display: none;
    width: 100%;
    margin-top: 15px;
    background: rgba(8, 7, 17, 0.95);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.8);
  }

  .main-navigation.is-active {
    display: block;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 15px;
  }

  .main-navigation a {
    display: block;
    font-size: 16px;
  }

  /* Grid & Kontainer */
  .container {
    margin: 20px auto;
    padding: 0 15px;
  }

  .post-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Typography */
  .page-title, .post-title, .woocommerce div.product .product_title {
    font-size: 24px !important;
  }

  .entry-content {
    font-size: 16px;
  }

  .page-card, .single-post-card {
    padding: 20px;
  }

  /* WooCommerce Responsive Fixes */
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }

  .woocommerce div.product div.summary {
    padding: 20px;
    margin-top: 20px;
  }

  .woocommerce table.shop_table_responsive tr td,
  .woocommerce table.shop_table_responsive tr th {
    display: block;
    text-align: right;
  }
}

/* --------------------------------------------------------------------------
   Smartphone Layar Sangat Kecil (Maksimal 480px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 480px) {
  .site-title a {
    font-size: 18px;
  }

  .card {
    padding: 18px;
  }

  .woocommerce a.button, 
  .woocommerce button.button, 
  .woocommerce input.button {
    width: 100%;
    text-align: center;
  }
}


@media screen and (max-width: 768px) {
  .footer-container {
    padding: 10px;
    gap: 15px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-tagline, .footer-copyright {
    font-size: 12px;
  }

  .footer-social-icons a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/* ==========================================================================
   FUTURISTIC RESPONSIVE HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  background: rgba(8, 7, 17, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 243, 255, 0.25);
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
}

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

/* Navigasi Desktop */
.main-navigation .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
  align-items: center;
}

.main-navigation a {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  position: relative;
  transition: all 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: var(--primary);
  text-shadow: var(--glow-primary);
}

/* Sub-menu / Dropdown Desktop */
.main-navigation ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(12, 10, 26, 0.95);
  border: 1px solid rgba(0, 243, 255, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8), var(--glow-primary);
  list-style: none;
  padding: 10px 0;
  min-width: 200px;
  border-radius: 4px;
}

.main-navigation ul li:hover > ul {
  display: block;
}

.main-navigation ul ul a {
  padding: 10px 20px;
  display: block;
  font-size: 12px;
}

/* Tombol Hamburger (Mobile) */
.menu-toggle {
  display: none;
  background: rgba(0, 243, 255, 0.05);
  border: 1px solid var(--primary);
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: var(--glow-primary);
  transition: all 0.3s ease;
}

.menu-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

/* Animasi Transformasi Hamburger ke X */
.menu-toggle.is-active .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ==========================================================================
   BREAKPOINT RESPONSIVE (Maksimal 868px)
   ========================================================================== */
@media screen and (max-width: 868px) {
  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(8, 7, 17, 0.98);
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.9);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
    opacity: 0;
  }

  .main-navigation.is-active {
    max-height: 80vh; /* Menu bisa di-scroll jika panjang */
    overflow-y: auto;
    opacity: 1;
  }

  .main-navigation .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 0;
  }

  .main-navigation li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .main-navigation a {
    display: block;
    padding: 15px 10px;
    font-size: 14px;
    width: 100%;
  }

  /* Dropdown / Sub-menu pada Mobile */
  .main-navigation ul ul {
    position: static;
    display: none;
    background: rgba(20, 18, 38, 0.6);
    box-shadow: none;
    border: none;
    padding-left: 20px;
  }

  .main-navigation li.sub-menu-open > ul {
    display: block;
  }
}

/* ==========================================================================
   DYNAMIC FUTURISTIC FOOTER & ICONS
   ========================================================================== */

.site-footer {
  margin-top: 60px;
  padding: 40px 20px 30px;
  background: rgba(8, 7, 17, 0.95);
  backdrop-filter: blur(10px);
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(226, 232, 240, 0.6);
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Social Icons */
.footer-social-icons {
  display: flex;
  gap: 15px;
  margin: 10px 0;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(20, 18, 38, 0.7);
  color: var(--text);
  font-size: 16px;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   VARIASI GAYA FOOTER (Preset Styles)
   -------------------------------------------------------------------------- */

/* Gaya 1: Neon Cyan Glow (Default) */
.footer-style-neon-cyan {
  border-top: 1px solid var(--primary);
  box-shadow: 0 -5px 20px rgba(0, 243, 255, 0.15);
}

.footer-style-neon-cyan .footer-social-icons a {
  border: 1px solid rgba(0, 243, 255, 0.3);
  color: var(--primary);
}

.footer-style-neon-cyan .footer-social-icons a:hover {
  background: var(--primary);
  color: #000;
  box-shadow: var(--glow-primary);
}

/* Gaya 2: Neon Magenta Glow */
.footer-style-neon-magenta {
  border-top: 1px solid var(--secondary);
  box-shadow: 0 -5px 20px rgba(255, 0, 85, 0.2);
}

.footer-style-neon-magenta .footer-title {
  color: var(--secondary);
  text-shadow: 0 0 10px var(--secondary);
}

.footer-style-neon-magenta .footer-social-icons a {
  border: 1px solid rgba(255, 0, 85, 0.4);
  color: var(--secondary);
}

.footer-style-neon-magenta .footer-social-icons a:hover {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 0 15px var(--secondary);
}

/* Gaya 3: Minimal Grid Matrix */
.footer-style-minimal-grid {
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle, rgba(20, 18, 38, 0.9) 0%, rgba(8, 7, 17, 1) 100%);
}

.footer-style-minimal-grid .footer-social-icons a {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.footer-style-minimal-grid .footer-social-icons a:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   UPLOADED FOOTER ICONS STYLING
   ========================================================================== */

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(20, 18, 38, 0.7);
  border: 1px solid rgba(0, 243, 255, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
}

.footer-social-icons a:hover {
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
  transform: translateY(-3px);
}

/* Ukuran dan Efek Gambar Ikon yang Diunggah */
.footer-social-icons img.uploaded-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.5));
  transition: filter 0.3s ease;
}

.footer-social-icons a:hover img.uploaded-icon {
  filter: drop-shadow(0 0 10px rgba(0, 243, 255, 1));
}
/* ==========================================================================
   ROBLOX STYLE FUTURISTIC CAROUSEL
   ========================================================================== */

.roblox-carousel-wrapper {
  position: relative;
  margin-bottom: 50px;
  border: 1px solid rgba(0, 243, 255, 0.4);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 243, 255, 0.2);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.roblox-swiper {
  width: 100%;
  height: 420px;
}

.roblox-slide {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8%;
  box-sizing: border-box;
}

/* Background Image & Grid Overlay */
.slide-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) contrast(1.2);
  transition: transform 6s ease;
}

.swiper-slide-active .slide-bg {
  transform: scale(1.08); /* Efek zoom gambar ala game */
}

.slide-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(8, 7, 17, 0.95) 0%, rgba(8, 7, 17, 0.5) 60%, transparent 100%),
              radial-gradient(circle, rgba(0, 243, 255, 0.1) 1px, transparent 1px);
  background-size: 100% 100%, 20px 20px; /* Efek grid HUD */
}

/* Slide Content */
.slide-content {
  position: relative;
  z-index: 5;
  max-width: 550px;
}

.hud-tag {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  color: var(--primary);
  letter-spacing: 2px;
  background: rgba(0, 243, 255, 0.1);
  padding: 4px 10px;
  border-left: 3px solid var(--primary);
  display: inline-block;
  margin-bottom: 12px;
}

.slide-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.neon-text {
  color: var(--primary);
  text-shadow: var(--glow-primary);
}

.neon-text-alt {
  color: var(--secondary);
  text-shadow: 0 0 15px var(--secondary);
}

.slide-desc {
  font-size: 16px;
  color: rgba(226, 232, 240, 0.85);
  margin-bottom: 25px;
}

/* Tombol HUD Roblox */
.hud-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  background: var(--primary);
  padding: 12px 25px;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  box-shadow: 0 0 15px var(--primary);
  transition: all 0.3s ease;
}

.hud-button:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 25px #fff;
  transform: translateY(-2px);
}

.hud-button.alt {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 0 15px var(--secondary);
}

.hud-button.alt:hover {
  background: #fff;
  color: #000;
}

/* Navigasi Roblox HUD Buttons */
.roblox-nav-btn {
  color: var(--primary) !important;
  background: rgba(8, 7, 17, 0.8);
  border: 1px solid var(--primary);
  width: 45px !important;
  height: 45px !important;
  border-radius: 4px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.roblox-nav-btn::after {
  font-size: 18px !important;
  font-weight: bold;
}

.roblox-nav-btn:hover {
  background: var(--primary);
  color: #000 !important;
  box-shadow: var(--glow-primary);
}

/* Indikator Swiper */
.roblox-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  width: 12px;
  height: 4px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.roblox-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 25px;
  box-shadow: var(--glow-primary);
}

/* Responsive Fix */
@media screen and (max-width: 768px) {
  .roblox-swiper {
    height: 350px;
  }
  .slide-title {
    font-size: 26px;
  }
  .slide-desc {
    font-size: 14px;
  }
  .hud-button {
    padding: 10px 18px;
    font-size: 12px;
  }
}
/* ==========================================================================
   FUTURISTIC GOOGLE LOGIN BUTTON STYLING
   ========================================================================== */

.nsl-button-google {
  background: rgba(12, 10, 26, 0.9) !important;
  border: 1px solid var(--primary) !important;
  border-radius: 4px !important;
  color: #fff !important;
  font-family: 'Orbitron', sans-serif !important;
  letter-spacing: 1px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3) !important;
  transition: all 0.3s ease !important;
}

.nsl-button-google:hover {
  background: var(--primary) !important;
  color: #000 !important;
  box-shadow: 0 0 20px var(--primary) !important;
  transform: translateY(-2px);
}
.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  text-shadow: var(--glow-primary);
}

