/* Google Fonts: Space Grotesk (headings), Inter (body), JetBrains Mono (monospaced accents) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;600&family=Space+Grotesk:wght@600;700&display=swap');

:root {
  /* Colors */
  --bg-darker: #0a0a12;
  --bg-main: #0d0f1a;
  --bg-card: #15162a;
  --bg-card-hover: #1c1d3a;
  --primary: #6c63ff; /* Electric Blurple */
  --primary-hover: #837bff;
  --secondary: #00d4ff; /* Electric Cyan */
  --secondary-hover: #33ddff;
  --accent: #ffb547; /* Neon Amber */
  --border-color: #2a2b40;
  --border-color-glow: rgba(0, 212, 255, 0.4);
  
  --text-main: #e4e5f1;
  --text-light: #ffffff;
  --text-muted: #6b6d8a;
  --text-error: #ff4a4a;
  --text-success: #20e070;

  /* Font Families */
  --font-headings: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows & Glows */
  --shadow-glow-cyan: 0 0 15px rgba(0, 212, 255, 0.25);
  --shadow-glow-purple: 0 0 15px rgba(108, 99, 255, 0.25);
  --shadow-glow-amber: 0 0 15px rgba(255, 181, 71, 0.25);
  --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-darker);
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Animated Grid Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(108, 99, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 99, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center center;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(108, 99, 255, 0.08) 0%, rgba(13, 15, 26, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Scanline Effect */
.scanlines {
  position: fixed;
  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.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 4px, 6px 100%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.15;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-light);
  line-height: 1.2;
}

p {
  color: var(--text-main);
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}
a:hover {
  color: var(--secondary-hover);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 0;
  }
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 18, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--secondary);
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-main);
  font-size: 15px;
}

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

.nav-auth {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* User Info on Navbar */
.user-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  box-shadow: var(--shadow-glow-purple);
}

.user-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid transparent;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-glow-purple);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: var(--shadow-glow-cyan);
  transform: translateY(-1px);
}

.btn-discord {
  background-color: #5865F2;
  color: var(--text-light);
}

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

.btn-accent {
  background-color: var(--accent);
  color: var(--bg-darker);
}

.btn-accent:hover {
  background-color: #ffc46b;
  box-shadow: var(--shadow-glow-amber);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 6px 12px;
  font-size: 13px;
}

.btn-danger {
  background-color: transparent;
  border: 1px solid rgba(255, 74, 74, 0.3);
  color: var(--text-error);
}

.btn-danger:hover {
  background-color: var(--text-error);
  color: var(--text-light);
  box-shadow: 0 0 15px rgba(255, 74, 74, 0.3);
}

/* Cards */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 24px;
  position: relative;
  transition: var(--transition-normal);
  overflow: hidden;
}

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

.card:hover {
  border-color: rgba(108, 99, 255, 0.5);
  box-shadow: var(--shadow-card), var(--shadow-glow-purple);
  transform: translateY(-2px);
}

.card:hover::before {
  opacity: 1;
}

/* Forms & Inputs */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-headings);
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-light);
}

.input {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(10, 10, 18, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition-fast);
}

.input:focus {
  border-color: var(--secondary);
  outline: none;
  box-shadow: var(--shadow-glow-cyan);
}

.input::placeholder {
  color: var(--text-muted);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}

.badge-primary {
  background-color: rgba(108, 99, 255, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
}

.badge-success {
  background-color: rgba(32, 224, 112, 0.15);
  border: 1px solid var(--text-success);
  color: var(--text-success);
}

.badge-warning {
  background-color: rgba(255, 181, 71, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
}

/* Steps / Wizard */
.steps-container {
  margin-bottom: 40px;
}

.steps {
  display: flex;
  justify-content: space-between;
  list-style: none;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.step-item {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-main);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition-normal);
}

.step-text {
  font-family: var(--font-headings);
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition-normal);
}

.step-item.active .step-dot {
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: var(--shadow-glow-cyan);
}

.step-item.active .step-text {
  color: var(--text-light);
}

.step-item.completed .step-dot {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--text-light);
}

.step-item.completed .step-text {
  color: var(--text-main);
}

/* Dashboard Sidebar Layout */
.dashboard-layout {
  display: flex;
  margin-top: 40px;
  gap: 30px;
  min-height: calc(100vh - 180px);
}

.sidebar {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--text-main);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}

.sidebar-btn:hover {
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
}

.sidebar-btn.active {
  background-color: rgba(108, 99, 255, 0.1);
  border-color: rgba(108, 99, 255, 0.2);
  color: var(--primary);
  box-shadow: 0 0 10px rgba(108, 99, 255, 0.05);
}

.dashboard-content {
  flex-grow: 1;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

@media (max-width: 992px) {
  .dashboard-layout {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .sidebar-btn {
    white-space: nowrap;
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}

.hero-title {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title span {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(108, 99, 255, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-main);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-darker);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 24px;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1.1;
}

.stat-label {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-number {
    font-size: 36px;
  }
}

/* Feature Cards Grid */
.features-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
}

.feature-card {
  padding: 32px;
}

.feature-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(108, 99, 255, 0.1);
  border: 1px solid var(--primary);
  border-radius: 4px;
  color: var(--primary);
  filter: drop-shadow(0 0 5px rgba(108, 99, 255, 0.3));
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card:hover .feature-icon {
  background-color: rgba(0, 212, 255, 0.15);
  border-color: var(--secondary);
  color: var(--secondary);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.feature-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Server Guild Selection */
.guilds-grid {
  grid-template-columns: repeat(3, 1fr);
}

.guild-card {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 16px;
}

.guild-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-light);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

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

.guild-card.selected {
  border-color: var(--secondary);
  background-color: rgba(0, 212, 255, 0.05);
  box-shadow: var(--shadow-glow-cyan);
}

/* Bot Token Setup Instructions */
.bot-setup-box {
  background-color: rgba(10, 10, 18, 0.4);
  border: 1px dashed var(--border-color);
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 24px;
}

.bot-setup-box ol {
  padding-left: 20px;
  margin-top: 10px;
}

.bot-setup-box li {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-main);
}

/* Roles List Config */
.roles-config-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
  margin-bottom: 24px;
}

.role-config-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.role-config-details {
  flex-grow: 1;
}

.role-config-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--text-light);
}

.role-color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.role-config-inputs {
  display: flex;
  gap: 16px;
  width: 400px;
}

@media (max-width: 992px) {
  .role-config-item {
    flex-direction: column;
    align-items: stretch;
  }
  .role-config-inputs {
    width: 100%;
    flex-direction: column;
  }
}

/* Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: var(--text-main);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(24px);
  background-color: var(--text-light);
}

/* Shop Grid / Cards */
.shops-grid {
  grid-template-columns: repeat(2, 1fr);
}

.shop-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.shop-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.shop-card-title {
  font-size: 18px;
}

.shop-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop-card-footer {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* Tables */
.table-container {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.table th, .table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
}

.table th {
  background-color: rgba(255, 255, 255, 0.02);
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--text-light);
}

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

/* Modals */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.modal {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 32px;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: var(--shadow-card), var(--shadow-glow-purple);
  transform: translateY(-20px);
  transition: transform var(--transition-normal);
}

.modal-backdrop.active .modal {
  transform: translateY(0);
}

.modal-header {
  margin-bottom: 20px;
}

.modal-title {
  font-size: 24px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-light);
}

.modal-footer {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Alerts / Notifications */
.alert {
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.alert-error {
  background-color: rgba(255, 74, 74, 0.1);
  border: 1px solid var(--text-error);
  color: var(--text-error);
}

.alert-success {
  background-color: rgba(32, 224, 112, 0.1);
  border: 1px solid var(--text-success);
  color: var(--text-success);
}

/* Public Shop CSS Styling */
.shop-header-wrapper {
  background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.15) 0%, rgba(10, 10, 18, 0) 60%);
  border-bottom: 1px solid var(--border-color);
  padding: 60px 0;
  text-align: center;
}

.shop-guild-icon-large {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  box-shadow: var(--shadow-glow-cyan);
  margin: 0 auto 20px;
  overflow: hidden;
}

.shop-guild-icon-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-title-large {
  font-size: 40px;
  margin-bottom: 12px;
}

.shop-description-large {
  font-size: 16px;
  color: var(--text-main);
  max-width: 600px;
  margin: 0 auto;
}

.role-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 24px;
  background-color: rgba(21, 22, 42, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  position: relative;
  transition: var(--transition-normal);
}

.role-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-glow-cyan);
}

.role-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.role-card-name {
  font-family: var(--font-headings);
  font-size: 20px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.role-card-price {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 181, 71, 0.3);
}

.role-card-desc {
  color: var(--text-muted);
  font-size: 14px;
  flex-grow: 1;
  margin-bottom: 24px;
}

/* Spinner / Loader */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  border-top-color: var(--secondary);
  animation: spin 1s ease-in-out infinite;
  margin: 20px auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed var(--border-color);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.01);
}

.empty-state-icon {
  font-size: 40px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.empty-state-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.empty-state-desc {
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto 20px;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.telegram-bubble {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #0088cc;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}

.telegram-bubble:hover,
.telegram-bubble:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  background: #00a3e0;
}

.telegram-bubble svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
