/* ==========================================================================
   BAMBOOZ UTILITY - PREMIUM MINIMALIST DESIGN SYSTEM
   ========================================================================== */

/* Font Assets Declarations */
@font-face {
  font-family: 'Figtree';
  src: url('/assets/Fonts/Figtree-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Figtree';
  src: url('/assets/Fonts/Figtree-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Figtree';
  src: url('/assets/Fonts/Figtree-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Figtree';
  src: url('/assets/Fonts/Figtree-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Tektur';
  src: url('/assets/Fonts/Tektur-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Tektur';
  src: url('/assets/Fonts/Tektur-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Tektur';
  src: url('/assets/Fonts/Tektur-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Tektur';
  src: url('/assets/Fonts/Tektur-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

:root {
  /* WinUI 3 Background Ramp */
  --bg-primary: #0a0c0f;      /* Sidebar / splash / body root background */
  --bg-secondary: #0e1013;    /* Main content container background */
  --bg-panel: rgba(21, 24, 28, 0.45); /* Translucent elevated card background */
  --bg-panel-solid: #15181c;  /* Elevated surface / default card background */
  --bg-card-hover: #1b1f25;   /* Elevated hover card background */
  --bg-icon-well: #1f2328;    /* Icon wells, secondary chips */
  
  /* Brand / Accent colors */
  --accent-bamboo: #6ec69c;   /* Primary mint accent */
  --accent-bamboo-hover: #88d8b0; /* Hover mint accent */
  --accent-blue: #7fb8d6;     /* Cool blue accent */
  --accent-gold: #d0a85f;     /* Warm gold accent */
  --accent-danger: #e16f6f;   /* Hardware warning / error red */
  
  /* Accent Alpha/Tint Surfaces */
  --accent-surface-subtle: rgba(110, 198, 156, 0.05); /* 5% mint tint */
  --accent-surface: rgba(110, 198, 156, 0.09);        /* 9% mint tint */
  --accent-surface-strong: rgba(110, 198, 156, 0.15); /* 15% mint tint */
  --accent-selected: #173028;         /* Selected accent background */
  --accent-selected-border: #2a5446;  /* Selected accent border */
  --accent-selected-text: #bbe7d0;    /* Selected accent text */
  --glow-bamboo: 0 0 20px rgba(110, 198, 156, 0.25);
  
  /* Text */
  --text-primary: #e6e8eb;     /* Primary text color */
  --text-secondary: #7e848c;   /* Secondary text color */
  --text-dim: #5a6068;         /* Muted text color */
  
  /* WinUI 3 Borders */
  --border-color: #22262c;     /* Muted border (BorderBrushMuted) */
  --border-focus: #2d333b;     /* Strong border (BorderBrushStrong) */
  --border-subtle: #1b1e22;    /* Internal dividers (BorderBrushSubtle) */
  
  /* Fonts */
  --font-sans: 'Figtree', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-tech: 'Tektur', monospace;
  
  --transition-speed: 0.22s;
  --border-radius-sm: 6px;
  --border-radius-md: 8px;
  --border-radius-lg: 8px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Dynamic Interactive Particle Canvas Background */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navigation */
header {
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
  background: rgba(5, 6, 9, 0.6);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-speed);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-tech);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo span.highlight {
  color: var(--accent-bamboo);
  text-shadow: var(--glow-bamboo);
  font-weight: 400;
}

.logo-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(110, 198, 156, 0.06);
  border: 1px solid rgba(110, 198, 156, 0.2);
  border-radius: 6px;
  color: var(--text-primary);
}
  border-radius: 6px;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition-speed);
  padding: 6px 0;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.btn-admin {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-primary) !important;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem !important;
  transition: all var(--transition-speed);
}

.btn-admin:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-focus);
}

/* Hero Section */
.hero {
  padding: 120px 0 60px 0;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-surface);
  border: 1px solid var(--accent-selected-border);
  color: var(--accent-bamboo);
  border-radius: 11px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-tech);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--accent-white);
}

.hero h1 span {
  display: block;
  font-weight: 300;
  color: var(--text-secondary);
  background: none;
  -webkit-text-fill-color: initial;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
  font-weight: 400;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  margin-bottom: 40px;
}

.price-label {
  color: var(--text-dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-tech);
}

.price-value {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 700;
}

.price-value span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-left: 4px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.feature-card {
  background: var(--bg-panel-solid);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.feature-card::before {
  display: none; /* remove cyber animation lines */
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-focus);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background: var(--bg-icon-well);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.feature-image {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.feature-card .feature-icon {
  background: var(--bg-icon-well);
  border-color: var(--border-color);
}

.feature-card h3 {
  font-family: var(--font-tech);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Dashboard Purchase Section */
.purchase-section {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  backdrop-filter: blur(20px);
  margin-bottom: 80px;
  position: relative;
  box-shadow: none;
}

.purchase-section::after {
  display: none;
}

.section-title {
  text-align: center;
  font-family: var(--font-tech);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.section-title span {
  color: var(--text-secondary);
  text-shadow: none;
  font-weight: 300;
}

/* The Steps Layout */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.steps-container::before {
  display: none; /* Remove cyber connecting line */
}

.step-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: all var(--transition-speed);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-tech);
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 20px;
  box-shadow: none;
}

.step-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.step-action-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 64px;
}

/* Active Step */
.step-card.active {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-focus);
}

.step-card.active .step-number {
  border-color: var(--text-primary);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* Completed Step */
.step-card.completed {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.1);
}

.step-card.completed .step-number {
  border-color: var(--accent-blue);
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-blue);
}

/* Locked Step */
.step-card.locked {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Minimalist Button Styling */
.btn-cyber {
  width: 100%;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-speed);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  background: var(--bg-panel-solid);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-cyber:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-focus);
  transform: translateY(-1px);
}

.btn-discord {
  background: #ffffff;
  color: #000000;
  border: none;
}

.btn-discord:hover {
  background: #e2e8f0;
  box-shadow: none;
  transform: translateY(-1px);
}

/* Minimal Download Active Button */
.btn-download-active {
  background: var(--accent-bamboo);
  color: var(--bg-primary);
  border: none;
  animation: none;
}

.btn-download-active:hover {
  background: var(--accent-bamboo-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(110, 198, 156, 0.2);
}

.btn-disabled {
  background: var(--bg-panel-solid);
  border: 1px solid var(--border-color);
  color: var(--text-dim);
  cursor: not-allowed;
  opacity: 0.5;
}

/* Connected User Status widget */
.user-info-widget {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.avatar-wrapper {
  position: relative;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.avatar-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  border: 1px solid var(--bg-panel-solid);
}

.user-details {
  text-align: left;
}

.user-name {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-primary);
}

.user-status-text {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-family: var(--font-tech);
}

.btn-logout {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.75rem;
  cursor: pointer;
  margin-top: 8px;
  transition: color var(--transition-speed);
}

.btn-logout:hover {
  color: var(--text-secondary);
}

/* Mock Login Console */
.mock-login-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px;
  margin-top: 32px;
  text-align: left;
  display: none;
}

.mock-login-panel.visible {
  display: block;
}

.mock-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.mock-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.mock-form {
  display: flex;
  gap: 10px;
}

.mock-input {
  flex-grow: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border-focus);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  transition: all var(--transition-speed);
}

.mock-input:focus {
  outline: none;
  border-color: var(--accent-selected-border);
  box-shadow: 0 0 0 1px var(--accent-selected-border);
}

.btn-mock-submit {
  background: var(--bg-panel-solid);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.btn-mock-submit:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-focus);
}

/* Success Payment Badge */
.success-payment-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  color: var(--text-primary);
  font-size: 0.8rem;
}

.success-payment-card i {
  color: var(--accent-blue);
  margin-bottom: 4px;
}

/* Footer Section */
footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  background: transparent;
  color: var(--text-dim);
  font-size: 0.8rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  font-weight: 600;
}

.footer-logo span {
  color: var(--text-dim);
}

/* Elegant Soft-Toaster Notifications */
.notification-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alert-toast {
  background: var(--bg-panel-solid);
  border: 1px solid var(--border-focus);
  border-radius: var(--border-radius-md);
  padding: 12px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-primary);
}

.alert-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.alert-toast.error {
  border-left: 3px solid var(--accent-danger);
}

.alert-toast.error i {
  color: var(--accent-danger);
}

.alert-toast.success {
  border-left: 3px solid var(--accent-bamboo);
}

.alert-toast.success i {
  color: var(--accent-bamboo);
}

.alert-toast.info {
  border-left: 3px solid var(--accent-blue);
}

.alert-toast.info i {
  color: var(--accent-blue);
}

/* Response Adjustments */
@media (max-width: 860px) {
  .steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
}

/* ==========================================================================
   GAME SPECIFIC ENHANCEMENTS SECTION
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-surface);
  border: 1px solid var(--accent-selected-border);
  color: var(--accent-bamboo);
  border-radius: 11px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title-tech {
  font-family: var(--font-tech);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--accent-white);
  margin-bottom: 8px;
}

.section-title-tech span {
  font-weight: 300;
  color: var(--text-secondary);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

#game-profiles {
  padding: 80px 0 40px 0;
}

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

.game-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  background-size: cover;
  background-position: center;
  background-image: var(--game-bg);
  overflow: hidden;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5,6,9,0.3) 0%, rgba(5,6,9,0.92) 85%);
  z-index: 1;
  transition: opacity var(--transition-speed);
}

.game-content {
  position: relative;
  z-index: 2;
  transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
}

.game-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px;
}

.game-card h3 {
  font-family: var(--font-tech);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--accent-white);
}

.game-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text-primary);
}

.stat-badge i {
  color: var(--accent-blue);
}

.game-card p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.85;
  transition: opacity var(--transition-speed);
}

/* Game Card Interactive Hover States */
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus);
  box-shadow: 0 15px 40px rgba(110, 198, 156, 0.08);
}

.game-card:hover .game-overlay {
  background: linear-gradient(180deg, rgba(10,12,15,0.15) 0%, rgba(10,12,15,0.85) 85%);
}

.game-card:hover .game-content {
  transform: translateY(-4px);
}

/* ==========================================================================
   TWEAKED PROGRAMS SECTION
   ========================================================================== */
#integrations {
  padding: 60px 0 80px 0;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.integration-item {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  transition: all var(--transition-speed);
}

.integration-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7) brightness(1.2);
  transition: all var(--transition-speed);
}

.integration-item span {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition-speed);
}

/* Integration Hover States */
.integration-item:hover {
  transform: translateY(-2px);
  border-color: var(--border-focus);
  background: rgba(14, 18, 28, 0.6);
}

.integration-item:hover .integration-logo {
  filter: grayscale(0) opacity(1) brightness(1);
  transform: scale(1.08);
}

.integration-item:hover span {
  color: var(--accent-white);
}

/* Custom logo icon styling */
.logo-svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

/* Responsive adjustment for games */
@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero h1 {
    font-size: 2.6rem;
  }
}
@media (max-width: 480px) {
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   STREAMLINED AUTH, CTA, AND GATEWAY SYSTEM
   ========================================================================== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-discord {
  background: #5865f2;
  color: #fff !important;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  padding: 6px 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-speed);
}

.btn-discord:hover {
  background: #4752c4;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.35);
  transform: translateY(-1px);
}

/* Profile Dropdown Container */
.profile-dropdown-container {
  position: relative;
  cursor: pointer;
}

.nav-avatar-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 40px;
  transition: all var(--transition-speed);
}

.nav-avatar-widget:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-focus);
}

.nav-avatar-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--accent-bamboo);
}

.nav-avatar-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-panel-solid);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  width: 180px;
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 2000;
  backdrop-filter: blur(16px);
}

.profile-dropdown-container:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-item {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: all var(--transition-speed);
}

.nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.nav-dropdown-item.danger-item {
  color: #f87171;
}

.nav-dropdown-item.danger-item:hover {
  background: rgba(239, 68, 68, 0.05);
}

/* Hero CTA Dynamic Button Container */
.hero-cta-area {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.btn-hero-cta {
  min-width: 260px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-hero-primary {
  background: var(--accent-bamboo);
  color: var(--bg-primary) !important;
  box-shadow: 0 4px 20px rgba(110, 198, 156, 0.2);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(110, 198, 156, 0.35);
  background: var(--accent-bamboo-hover);
}

.btn-hero-secondary {
  background: var(--bg-panel-solid);
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

.btn-hero-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-focus);
  transform: translateY(-2px);
}

/* Debloated Single Stateful Gateway Card */
.gateway-wrapper {
  max-width: 580px;
  margin: 0 auto;
}

.gateway-card {
  background: var(--bg-panel-solid);
  border: 1px solid var(--border-focus);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gateway-card:hover {
  border-color: var(--accent-selected-border);
  box-shadow: 0 20px 40px rgba(110, 198, 156, 0.05);
}

.gateway-card h3 {
  font-family: var(--font-tech);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.gateway-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.gateway-card .loading-state {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 40px 0;
}

.gateway-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.user-profile-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--bg-icon-well);
  border: 1px solid var(--border-color);
  padding: 16px 24px;
  border-radius: var(--border-radius-md);
  margin-bottom: 24px;
  width: 100%;
}

.user-profile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent-bamboo);
  box-shadow: var(--glow-bamboo);
}

.user-profile-details {
  text-align: left;
}

.user-profile-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

.user-profile-status {
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.user-profile-status i {
  color: var(--accent-bamboo);
}

.gateway-card .success-payment-card {
  background: var(--accent-selected);
  border: 1px solid var(--accent-selected-border);
  border-radius: var(--border-radius-md);
  padding: 24px;
  text-align: center;
  color: var(--accent-selected-text);
  font-size: 0.9rem;
  width: 100%;
  margin-bottom: 24px;
}

.gateway-card .success-payment-card i {
  color: var(--accent-bamboo);
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

