/* ==========================================================================
   Next-Gen Cyberpunk Neon Dark Glassmorphism Stylesheet
   ========================================================================== */

:root {
  --bg-dark: #070913;
  --bg-dark-surface: #0e122b;
  --glass-card: rgba(16, 21, 48, 0.72);
  --glass-card-hover: rgba(22, 28, 62, 0.85);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-border-hover: rgba(0, 242, 254, 0.35);
  --neon-cyan: #00f2fe;
  --neon-blue: #3b82f6;
  --neon-purple: #8b5cf6;
  --neon-magenta: #f72585;
  --neon-gold: #ffd700;
  --neon-amber: #f59e0b;
  --neon-green: #10b981;
  --text-white: #ffffff;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  --max-width: 960px;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(139, 92, 246, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 90% 85%, rgba(0, 242, 254, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(247, 37, 133, 0.08) 0%, transparent 60%);
  background-attachment: fixed;
  color: #e2e8f0;
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 75px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #070913;
}
::-webkit-scrollbar-thumb {
  background: #1e244d;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
}

/* ==========================================================================
   Live Real-Time Payout Ticker
   ========================================================================== */
.live-payout-ticker {
  background: linear-gradient(90deg, #0d1127 0%, #161b3d 50%, #0d1127 100%);
  border-bottom: 1px solid rgba(0, 242, 254, 0.25);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 13px;
}

.ticker-badge {
  background: linear-gradient(90deg, #ef4444, #f97316);
  color: #ffffff;
  font-weight: 800;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-right: 12px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

.ticker-text {
  color: #cbd5e1;
  white-space: nowrap;
  animation: marqueeTicker 25s linear infinite;
  display: inline-block;
}

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

/* ==========================================================================
   Cyber Floating Navbar
   ========================================================================== */
.cyber-navbar {
  background: rgba(10, 13, 33, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.5));
  transition: transform 0.3s ease;
}

.brand-logo-img:hover {
  transform: scale(1.08) rotate(3deg);
}

.brand-text {
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.brand-text span {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu a {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.nav-menu a:hover {
  color: var(--neon-cyan);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================================================
   Cyber Neon Buttons
   ========================================================================== */
.btn-neon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-neon-cyan {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #070913 !important;
  box-shadow: 0 0 18px rgba(0, 242, 254, 0.45);
}

.btn-neon-cyan:hover {
  box-shadow: 0 0 28px rgba(0, 242, 254, 0.8);
  transform: translateY(-2px);
}

.btn-neon-gold {
  background: linear-gradient(135deg, #ffd700 0%, #f59e0b 100%);
  color: #070913 !important;
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.45);
}

.btn-neon-gold:hover {
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.8);
  transform: translateY(-2px);
}

.btn-neon-outline {
  background: rgba(18, 24, 56, 0.7);
  color: #ffffff !important;
  border: 1px solid rgba(0, 242, 254, 0.4);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.15);
}

.btn-neon-outline:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
  transform: translateY(-2px);
}

.btn-neon-large {
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 30px;
}

/* ==========================================================================
   Hero Center Showcase
   ========================================================================== */
.hero-showcase {
  text-align: center;
  padding: 35px 0 20px 0;
}

.hero-glow-logo {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-glow-logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.4) 0%, rgba(139, 92, 246, 0.3) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(15px);
}

.hero-logo-img {
  width: 150px;
  height: 150px;
  position: relative;
  z-index: 2;
  border-radius: 35px;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}

.hero-logo-img:hover {
  transform: scale(1.06) translateY(-4px);
}

.hero-main-title {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto 24px auto;
}

.hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* ==========================================================================
   Live Platform Stats HUD
   ========================================================================== */
.stats-hud-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 25px 0 35px 0;
}

.stat-hud-card {
  background: var(--glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  transition: border-color 0.25s, transform 0.2s;
}

.stat-hud-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-3px);
}

.stat-hud-value {
  font-size: 24px;
  font-weight: 900;
  color: var(--neon-cyan);
  font-family: monospace;
  margin-bottom: 4px;
}

.stat-hud-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Live Win Go Draw Timer & Multiplier Calculator
   ========================================================================== */
.interactive-widgets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.widget-glass-card {
  background: var(--glass-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.widget-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-gold));
}

.widget-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-card-desc {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 18px;
}

/* Live Draw Timer */
.draw-timer-box {
  background: #080b20;
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
}

.timer-digits {
  font-size: 38px;
  font-weight: 900;
  font-family: monospace;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px rgba(0, 242, 254, 0.7);
  letter-spacing: 2px;
}

.timer-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.draw-balls-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.draw-ball {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: #ffffff;
}

.ball-red { background: linear-gradient(135deg, #ef4444, #b91c1c); box-shadow: 0 0 10px rgba(239, 68, 68, 0.5); }
.ball-green { background: linear-gradient(135deg, #10b981, #047857); box-shadow: 0 0 10px rgba(16, 185, 129, 0.5); }
.ball-violet { background: linear-gradient(135deg, #8b5cf6, #6d28d9); box-shadow: 0 0 10px rgba(139, 92, 246, 0.5); }

/* Multiplier Calculator */
.calc-slider-wrap {
  margin-bottom: 16px;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.calc-slider {
  width: 100%;
  accent-color: var(--neon-cyan);
  cursor: pointer;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.calc-result-box {
  background: #080b20;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}

.calc-result-label {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 700;
  text-transform: uppercase;
}

.calc-result-val {
  font-size: 16px;
  font-weight: 900;
  font-family: monospace;
}

.color-red-text { color: #f87171; }
.color-violet-text { color: #c084fc; }
.color-gold-text { color: #fbbf24; }

/* ==========================================================================
   Holographic Details Card Table
   ========================================================================== */
.glass-table-card {
  background: var(--glass-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin: 25px 0 35px 0;
}

.glass-table {
  width: 100%;
  border-collapse: collapse;
}

.glass-table th, .glass-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  text-align: left;
}

.glass-table tr:last-child th,
.glass-table tr:last-child td {
  border-bottom: none;
}

.glass-table th {
  background: rgba(14, 18, 44, 0.85);
  color: #cbd5e1;
  font-weight: 700;
  width: 38%;
}

.glass-table td {
  color: #ffffff;
}

.code-badge-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.invite-code-val {
  font-weight: 900;
  font-family: monospace;
  font-size: 18px;
  color: var(--neon-gold);
  background: rgba(245, 158, 11, 0.15);
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  letter-spacing: 1px;
}

.btn-copy-neon {
  background: linear-gradient(135deg, var(--neon-cyan), #3b82f6);
  color: #070913;
  border: none;
  font-weight: 800;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-copy-neon:hover {
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.6);
}

/* ==========================================================================
   Cyber Section Headers & Content Blocks
   ========================================================================== */
.cyber-section-header {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.25) 0%, rgba(0, 242, 254, 0.2) 100%);
  border-left: 4px solid var(--neon-cyan);
  border-radius: 0 10px 10px 0;
  padding: 12px 18px;
  margin: 30px 0 18px 0;
}

.cyber-section-header h2 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.glass-content-card {
  background: var(--glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 26px;
  margin-bottom: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.glass-content-card p {
  margin-bottom: 14px;
  color: #cbd5e1;
}

.glass-content-card ul, .glass-content-card ol {
  margin: 12px 0 16px 24px;
  color: #cbd5e1;
}

.glass-content-card li {
  margin-bottom: 6px;
}

.glass-content-card li strong {
  color: #ffffff;
}

/* ==========================================================================
   Game Modes Grid
   ========================================================================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.game-cyber-card {
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  transition: all 0.3s;
}

.game-cyber-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.25);
}

.game-card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.game-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.game-card-desc {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

/* ==========================================================================
   VIP Level & Rebate Glass Grid
   ========================================================================== */
.table-responsive-glass {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.custom-glass-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  text-align: center;
}

.custom-glass-table th, .custom-glass-table td {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.custom-glass-table th {
  background: rgba(14, 18, 44, 0.95);
  color: var(--neon-cyan);
  font-weight: 800;
  text-transform: uppercase;
}

.custom-glass-table tr:nth-child(even) {
  background: rgba(16, 21, 48, 0.4);
}

.vip-pill-badge {
  background: linear-gradient(135deg, #ffd700, #f59e0b);
  color: #070913;
  font-weight: 900;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ==========================================================================
   FAQ Accordion (Glowing Chevrons)
   ========================================================================== */
.faq-wrap-cyber {
  margin: 25px 0 35px 0;
}

.faq-cyber-item {
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-cyber-item:hover {
  border-color: rgba(0, 242, 254, 0.35);
}

.faq-cyber-header {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-cyber-icon {
  color: var(--neon-cyan);
  font-size: 18px;
  font-weight: 900;
  transition: transform 0.25s;
}

.faq-cyber-body {
  padding: 16px 20px;
  font-size: 14px;
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 13, 33, 0.4);
}

/* ==========================================================================
   Blog Cards & Reader Styles
   ========================================================================== */
.blog-grid-cyber {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.blog-cyber-card {
  background: var(--glass-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.blog-cyber-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.2);
}

.blog-cyber-card-header {
  background: linear-gradient(135deg, #111538, #070918);
  padding: 24px 16px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.blog-cyber-card-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.4));
}

.blog-cyber-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-cyber-badge {
  display: inline-block;
  background: rgba(0, 242, 254, 0.12);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 242, 254, 0.3);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  width: fit-content;
  text-transform: uppercase;
}

.blog-cyber-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-cyber-excerpt {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px;
  flex: 1;
}

.blog-cyber-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Single Post Cyber Reader */
.single-post-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  margin: 30px 0;
}

.single-post-main {
  background: var(--glass-card);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.single-post-main h1 {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
}

.single-post-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-dim);
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.single-post-body {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1;
}

.single-post-body h2 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin: 26px 0 10px 0;
}

.single-post-body h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--neon-cyan);
  margin: 20px 0 8px 0;
}

.single-post-body ul, .single-post-body ol {
  margin: 12px 0 16px 24px;
}

.single-post-body li {
  margin-bottom: 6px;
}

.single-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-glass-widget {
  background: var(--glass-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 22px;
}

.sidebar-widget-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--neon-cyan);
  padding-bottom: 6px;
  text-transform: uppercase;
}

/* ==========================================================================
   Mobile Floating Action Bar
   ========================================================================== */
.mobile-glass-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 9, 22, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 242, 254, 0.3);
  display: flex;
  justify-content: space-around;
  padding: 8px 10px;
  z-index: 1000;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
}

.mobile-glass-bar .btn-mobile {
  flex: 1;
  margin: 0 4px;
  text-align: center;
  padding: 9px 8px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 8px;
  text-decoration: none !important;
}

.btn-mobile-log {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-mobile-reg {
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  color: #070913 !important;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
}

.btn-mobile-app {
  background: linear-gradient(135deg, #ffd700, #f59e0b);
  color: #070913 !important;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

/* Toast */
.toast-cyber {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  background: #0d122b;
  color: #ffffff;
  border: 1px solid var(--neon-cyan);
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.5);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2000;
  pointer-events: none;
}

.toast-cyber.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Back to top */
.back-to-top-cyber {
  position: fixed;
  bottom: 75px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--neon-cyan), #3b82f6);
  color: #070913;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
  transition: all 0.25s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top-cyber.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-cyber:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.8);
}

/* Footer */
.site-footer-cyber {
  background: #04050e;
  border-top: 1px solid var(--glass-border);
  padding: 30px 0 40px 0;
  margin-top: 50px;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-cyber-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links-cyber a {
  color: var(--text-dim);
  text-decoration: none;
  margin-left: 16px;
  transition: color 0.2s;
}

.footer-links-cyber a:hover {
  color: var(--neon-cyan);
}

@media (max-width: 768px) {
  .single-post-grid {
    grid-template-columns: 1fr;
  }
  .navbar-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-main-title {
    font-size: 25px;
  }
}
