:root {
  /* Black & White Theme */
  --bg: #000000;
  --bg-secondary: #111111;
  --text: #ffffff;
  --text-secondary: #cccccc;

  /* Primary Accent - White Highlights */
  --accent: #ffffff;
  --accent-light: #f5f5f5;
  --accent-dark: #e0e0e0;
  --accent-subtle: rgba(255, 255, 255, 0.1);

  /* Secondary Accent - Deep Black Highlights */
  --accent-secondary: #000000;
  --accent-secondary-light: #1a1a1a;
  --accent-secondary-dark: #0a0a0a;
  --accent-secondary-subtle: rgba(0, 0, 0, 0.2);

/* Gradients */
  --gradient-primary: linear-gradient(135deg, #000000 0%, #333333 100%);
  --gradient-secondary: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
  --gradient-hero: linear-gradient(135deg, #000000 0%, #444444 50%, #ffffff 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
  --gradient-card: linear-gradient(to bottom, rgba(25, 25, 25, 0.95), rgba(0, 0, 0, 0.98));

  /* UI Colors */
  --box-bg: #0d0d0d;
  --card-bg: rgba(15, 15, 15, 0.95);
  --card-border: rgba(255, 255, 255, 0.1);
  --input-bg: #1a1a1a;
  --input-border: #333333;
  --input-focus-border: #ffffff;
  
 /* Status Colors */
  --success-color: #00ffae;
  --success-light: #33ffcc;
  --warning-color: #ffcc00;
  --danger-color: #ff4d4d;
  --info-color: #ffffff;
  --muted-text: #999999;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(255, 255, 255, 0.05);
  --shadow-md: 0 4px 6px rgba(255, 255, 255, 0.08), 0 2px 4px rgba(255, 255, 255, 0.05);
  --shadow-lg: 0 10px 15px rgba(255, 255, 255, 0.1), 0 4px 6px rgba(255, 255, 255, 0.05);
  --shadow-xl: 0 20px 25px rgba(255, 255, 255, 0.12), 0 10px 10px rgba(255, 255, 255, 0.04);
  --shadow-accent: 0 8px 16px rgba(255, 255, 255, 0.2), 0 4px 8px rgba(255, 255, 255, 0.1);
  --shadow-inner: inset 0 2px 4px rgba(255, 255, 255, 0.08);
  
/* Navbar */
  --navbar-bg: rgba(0, 0, 0, 0.8);
  --navbar-scrolled-bg: rgba(0, 0, 0, 0.95);

  /* Grid & Patterns */
  --grid-color: rgba(255, 255, 255, 0.05);
  --dot-color: rgba(255, 255, 255, 0.08);
  
  /* Typography */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;


  /* Layout & UI */
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;
  --transition-speed: 0.3s;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --z-index-dropdown: 1000;
  --z-index-sticky: 1020;
  --z-index-fixed: 1030;
  --z-index-modal-backdrop: 1040;
  --z-index-modal: 1050;
  --z-index-popover: 1060;
  --z-index-tooltip: 1070;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background var(--transition-speed) var(--transition-smooth), 
              color var(--transition-speed) var(--transition-smooth);
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===========================================
   LOGIN PAGE STYLES
   =========================================== */

.login-page-body {
  background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 20px, var(--grid-color) 20px, var(--grid-color) 21px),
    repeating-linear-gradient(90deg, transparent, transparent 20px, var(--grid-color) 20px, var(--grid-color) 21px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.login-page-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(220, 38, 38, 0.08), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.08), transparent 30%);
  pointer-events: none;
}

.login-container {
  display: flex;
  gap: 4rem;
  max-width: 900px;
  width: 100%;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

/* Left Section */
.left-section {
  flex: 1;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-section h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.left-section p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s var(--transition-smooth);
}

.feature-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 36px;
  text-align: center;
}

.feature-item h4 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.feature-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Right Section: Login Form Card */
.right-section {
  flex: 1;
  max-width: 380px;
}

.login-card {
  background: var(--gradient-card);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-hero);
}

.login-card .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.login-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--input-border);
  border-radius: var(--border-radius-sm);
  background: var(--input-bg);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s var(--transition-smooth);
  font-family: inherit;
}

.form-control::placeholder {
  color: var(--muted-text);
  opacity: 0.6;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-subtle), var(--shadow-sm);
  transform: translateY(-1px);
}

.forgot-password {
  display: block;
  text-align: right;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.forgot-password:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.signup-link {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.signup-link a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s var(--transition-smooth);
}

.signup-link a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* ===========================================
   REGISTER PAGE STYLES
   =========================================== */

.register-page-body {
  background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 20px, var(--grid-color) 20px, var(--grid-color) 21px),
    repeating-linear-gradient(90deg, transparent, transparent 20px, var(--grid-color) 20px, var(--grid-color) 21px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.register-page-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(220, 38, 38, 0.08), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.08), transparent 30%);
  pointer-events: none;
}

.register-container {
  display: flex;
  gap: 4rem;
  max-width: 950px;
  width: 100%;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.register-card {
  background: var(--gradient-card);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-hero);
}

.register-card .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.register-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* ===========================================
   BUY PAGE STYLES
   =========================================== */

.buy-page .header {
  position: fixed;
  top: 0;
  left: 280px;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  z-index: 100;
  padding: 1.5rem 2rem;
  transition: all 0.3s var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.back-btn {
  background: var(--box-bg);
  border: 2px solid var(--card-border);
  border-radius: var(--border-radius-sm);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  text-decoration: none;
  color: var(--text);
}

.back-btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  transform: translateX(-4px);
  box-shadow: var(--shadow-accent);
}

.page-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.buy-page .main-content {
  position: relative;
  background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
  min-height: 100vh;
  padding-top: 100px;
}

.buy-page .main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(220, 38, 38, 0.04), transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(37, 99, 235, 0.04), transparent 35%),
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(0, 0, 0, 0.015) 30px, rgba(0, 0, 0, 0.015) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(0, 0, 0, 0.015) 30px, rgba(0, 0, 0, 0.015) 31px);
  pointer-events: none;
  z-index: 0;
}

.buy-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

/* Price Card */
.price-card {
  background: var(--gradient-card);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-secondary);
}

.crypto-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.crypto-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.crypto-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.3rem;
  box-shadow: var(--shadow-blue);
}

.crypto-details h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.crypto-details p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.ton-badge {
  background: var(--gradient-secondary);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition: all 0.3s var(--transition-smooth);
}

.ton-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
}

.price-display {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--gradient-subtle);
  border-radius: var(--border-radius-sm);
}

.current-price {
  font-size: 2.75rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.price-change {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--danger-color);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Tab Buttons */
.tab-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 1rem;
  border: 2px solid var(--card-border);
  background: var(--box-bg);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
}

.tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s var(--transition-smooth);
}

.tab-btn span {
  position: relative;
  z-index: 1;
}

.tab-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-accent);
}

.tab-btn.active::before {
  opacity: 1;
}

.tab-btn:not(.active):hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Buy Form */
.buy-form {
  background: var(--gradient-card);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--input-border);
  border-radius: var(--border-radius-sm);
  background: var(--input-bg);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s var(--transition-smooth);
  resize: vertical;
  min-height: 50px;
  font-family: 'Poppins', sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-subtle), var(--shadow-sm);
  transform: translateY(-1px);
}

.form-input::placeholder {
  color: var(--muted-text);
  opacity: 0.6;
}

.wallet-input {
  min-height: 100px;
}

.memo-input {
  min-height: 80px;
}

.amount-input-group {
  position: relative;
}

.currency-selector {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.amount-input {
  padding-left: 5.5rem;
  text-align: right;
  font-weight: 600;
  font-size: 1.1rem;
}

.conversion-info {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--accent-subtle);
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.balance-info {
  color: var(--text);
  font-weight: 600;
}

/* Continue Button */
.continue-btn {
  width: 100%;
  padding: 1.25rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  box-shadow: var(--shadow-accent);
  position: relative;
  overflow: hidden;
}

.continue-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.continue-btn:hover::before {
  left: 100%;
}

.continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.4);
}

.continue-btn:active {
  transform: translateY(0);
}

.continue-btn:disabled {
  background: var(--muted-text);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}

/* Transactions Section */
.transactions-section {
  background: var(--gradient-card);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-align: center;
  backdrop-filter: blur(20px);
}

.no-transactions {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  padding: 2rem;
}

/* ===========================================
   NAVBAR STYLES
   =========================================== */

.navbar {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--card-border);
  padding: 8px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: var(--z-index-fixed);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition-speed) var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.logo {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  transition: transform 0.3s var(--transition-smooth);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #000000;
  background-clip: text;
}

.desktop-nav {
  display: flex;
  gap: 2.5rem;
}

.desktop-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-speed) var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-speed) var(--transition-smooth);
}

.desktop-nav a:hover {
  color: var(--accent);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.desktop-auth {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.desktop-auth a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-speed) var(--transition-smooth);
}

.desktop-auth .signin:hover {
  color: var(--accent);
  background: var(--accent-subtle);
}

.desktop-auth .signup {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-accent);
}

.desktop-auth .signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: var(--box-bg);
  border: 2px solid var(--card-border);
  border-radius: var(--border-radius-sm);
  width: 42px;
  height: 42px;
  color: black;
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-smooth);
}

.hamburger:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-accent);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  transform: translateY(-150%);
  transition: transform 0.4s var(--transition-smooth);
  z-index: 999;
  border-bottom: 1px solid var(--card-border);
  backdrop-filter: blur(20px);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--card-border);
}

.mobile-nav-links a {
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: black;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
  border-radius: var(--border-radius-sm);
}

.mobile-nav-links a:hover {
  color: var(--accent);
  background: var(--accent-subtle);
}

.mobile-auth {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-auth a {
  padding: 1rem 1.5rem;
  background: var(--box-bg);
  border: 2px solid var(--card-border);
  border-radius: var(--border-radius-sm);
  color: var(--text);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s var(--transition-smooth);
}

.mobile-auth a:last-child {
  background: var(--gradient-primary);
  color: white;
  border: none;
  box-shadow: var(--shadow-accent);
}

.mobile-auth a:hover {
  transform: translateY(-2px);
}

.mobile-auth a:first-child:hover {
  background: var(--accent-subtle);
  border-color: var(--accent);
  color: var(--accent);
}

.mobile-auth a:last-child:hover {
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

/* ===========================================
   HERO SECTION
   =========================================== */

.hero-section {
  padding: 120px 0 80px;
  text-align: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.06), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(37, 99, 235, 0.06), transparent 40%),
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(0, 0, 0, 0.02) 30px, rgba(0, 0, 0, 0.02) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(0, 0, 0, 0.02) 30px, rgba(0, 0, 0, 0.02) 31px);
  pointer-events: none;
  z-index: -1;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  color: var(--text);
}

.highlight-box {
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  display: inline-block;
  box-shadow: var(--shadow-accent);
}

.hero-section p {
  font-size: 1.25rem;
  margin: 1.5rem auto 2rem;
  max-width: 650px;
  color: var(--text-secondary);
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.cta-btn {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-sm);
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  box-shadow: var(--shadow-accent);
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.9s forwards;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.5);
}

.cta-btn:active {
  transform: translateY(-1px);
}

/* ===========================================
   FEATURES SECTION
   =========================================== */

.features-section {
  padding: 80px 0;
  text-align: center;
  margin-top: 60px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.section-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -40px;
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: var(--shadow-accent);
  animation: pulse 2s infinite;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s var(--transition-smooth);
  opacity: 0;
  transform: translateY(30px);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-hero);
  transform: scaleX(0);
  transition: transform 0.4s var(--transition-smooth);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.3s forwards; }
.feature-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.5s forwards; }
.feature-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.7s forwards; }
.feature-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.9s forwards; }
.feature-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 1.1s forwards; }
.feature-card:nth-child(6) { animation: fadeInUp 0.6s ease-out 1.3s forwards; }

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-card .feature-icon {
  font-size: 2.5rem;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}

.feature-card h4 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===========================================
   STATISTICS SECTION
   =========================================== */

.statistics-section {
  padding: 80px 0;
  text-align: center;
  margin-top: 60px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: scale(0.9);
  backdrop-filter: blur(20px);
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-subtle);
  opacity: 0;
  transition: opacity 0.3s var(--transition-smooth);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.stat-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.3s forwards; }
.stat-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.5s forwards; }
.stat-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.7s forwards; }
.stat-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.9s forwards; }
.stat-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 1.1s forwards; }

.stat-header {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.75rem 0;
  position: relative;
  z-index: 1;
}

.stat-subtext {
  font-size: 0.875rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.positive-change {
  color: var(--success-color);
  font-weight: 700;
}

/* ===========================================
   CTA SECTION
   =========================================== */

.cta-section {
  padding: 100px 0;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.08), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.08), transparent 35%),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(0, 0, 0, 0.015) 40px, rgba(0, 0, 0, 0.015) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0, 0, 0, 0.015) 40px, rgba(0, 0, 0, 0.015) 41px);
  pointer-events: none;
  z-index: -1;
}

.cta-section h2 {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.9s forwards;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-sm);
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-accent);
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 1rem 2rem;
  border: 2px solid var(--accent-secondary);
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  font-size: 1.05rem;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-secondary);
  transition: width 0.3s var(--transition-smooth);
  z-index: -1;
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-secondary:hover {
  color: white;
  border-color: var(--accent-secondary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.cta-tags {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--text-secondary);
  opacity: 0;
  animation: fadeIn 1s ease-out 1.2s forwards;
}

.cta-tags span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s var(--transition-smooth);
  font-weight: 500;
}

.cta-tags span:hover {
  color: var(--accent);
  transform: scale(1.05);
}

/* ===========================================
   FOOTER
   =========================================== */

footer {
  background: var(--box-bg);
  padding: 60px 0 30px;
  font-size: 14px;
  color: var(--text);
  border-top: 1px solid var(--card-border);
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  margin-top: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-contact p {
  margin: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.social-icons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-subtle);
  color: var(--text);
  transition: all 0.3s var(--transition-smooth);
  border: 1px solid var(--card-border);
}

.social-icons a:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===========================================
   DASHBOARD STYLES
   =========================================== */

.dashboard-page .header {
  position: fixed;
  top: 0;
  left: 280px;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  z-index: 100;
  padding: 1.5rem 2rem;
  transition: all 0.3s var(--transition-smooth);
}

.dashboard-page .main-content {
  position: relative;
  background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
  min-height: 100vh;
  padding-top: 100px;
}

.dashboard-page .main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(220, 38, 38, 0.04), transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(37, 99, 235, 0.04), transparent 35%),
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(0, 0, 0, 0.015) 30px, rgba(0, 0, 0, 0.015) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(0, 0, 0, 0.015) 30px, rgba(0, 0, 0, 0.015) 31px);
  pointer-events: none;
  z-index: 0;
}

.dashboard-content-card {
  background: var(--gradient-card);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(20px);
}

/* Sidebar */
.sidebar {
  width: 250px;
  background: var(--gradient-card);
  color: var(--text);
  box-shadow: var(--shadow-lg);
  position: fixed;
  top: 0;
  bottom: 0;
  padding: 2rem;
  overflow-y: auto;
  z-index: 1030;
  transform: translateX(-100%);
  transition: transform 0.4s var(--transition-smooth);
  border-right: 1px solid var(--card-border);
  backdrop-filter: blur(20px);
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  transition: all 0.3s var(--transition-smooth);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.sidebar a:hover {
  background: var(--accent-subtle);
  color: var(--accent);
  transform: translateX(5px);
}

.sidebar a.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-accent);
}

.sidebar i {
  font-size: 1.2rem;
}

/* Main Content */
.main-content {
  margin-left: 250px;
  padding: 2rem;
  min-height: 100vh;
  padding-top: 100px;
  transition: all 0.3s var(--transition-smooth);
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  position: fixed;
  top: 0;
  left: 270px;
  right: 20px;
  z-index: 1030;
  margin: 0;
  transition: all 0.3s var(--transition-smooth);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-pic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background: var(--gradient-primary);
  padding: 2px;
}

.welcome-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.welcome-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.notifications {
  display: flex;
  align-items: center;
}

.referral-btn {
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-accent);
  position: relative;
  overflow: hidden;
}

.referral-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.referral-btn:hover::before {
  left: 100%;
}

.referral-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.5);
}

.badge {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 0.5rem;
}

/* Announcement */
.announcement {
  background: var(--accent-secondary-subtle);
  border: 2px solid rgba(37, 99, 235, 0.2);
  color: var(--text);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--transition-smooth);
}

.announcement:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.telegram-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  box-shadow: var(--shadow-blue);
}

.announcement-text h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-secondary-dark);
  margin: 0;
}

.announcement-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0.5rem 0 0;
}

.announcement .cta-btn {
  background: var(--gradient-secondary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  box-shadow: var(--shadow-blue);
}

.announcement .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* Account Details */
.account-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.balance-card,
.bank-card {
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.3s var(--transition-smooth);
}

.balance-card::before,
.bank-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-hero);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-speed) var(--transition-smooth);
}

.balance-card:hover,
.bank-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.balance-card:hover::before,
.bank-card:hover::before {
  transform: scaleX(1);
}

.balance-card h4,
.bank-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.balance-card p,
.bank-card p {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
}

.referral-balance {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
  font-weight: 500;
}

.referral-balance span {
  color: var(--accent);
  font-weight: 700;
}

.bank-details {
  margin-top: 1rem;
}

.account-info {
  background: var(--gradient-subtle);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: var(--border-radius-sm);
  padding: 1.25rem;
  margin-bottom: 0;
}

.account-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.account-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.account-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
  min-width: 100px;
}

.account-value {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  justify-content: flex-end;
}

.account-number, .bank-name, .account-holder {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  font-family: 'Courier New', monospace;
}

.account-holder {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}

.copy-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  font-size: 0.85rem;
  box-shadow: var(--shadow-accent);
}

.copy-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.bank-logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.funding-note {
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--border-radius-sm);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text);
  margin-top: 1rem;
}

.funding-note i {
  color: var(--success-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.funding-note span {
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* Asset Cards */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.asset-card {
  background: var(--gradient-card);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s var(--transition-smooth);
  backdrop-filter: blur(20px);
}

.asset-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.asset-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.asset-info img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.asset-info div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.asset-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.asset-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

.asset-price {
  text-align: right;
}

.asset-price .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.asset-price .change {
  font-size: 0.95rem;
  font-weight: 600;
}

.change.up {
  color: var(--success-light);
}

.change.down {
  color: var(--danger-color);
}

/* Assets Section */
.assets-section {
  margin-top: 2rem;
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
}

.tabs {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab {
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  background-color: var(--input-bg);
  color: var(--text);
  border: 2px solid transparent;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  font-weight: 600;
}

.tab:hover {
  background-color: var(--accent-subtle);
  color: var(--accent);
  border-color: var(--accent);
}

.tab.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-accent);
}

.asset-list-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.asset-list {
  display: none;
  gap: 1rem;
  flex-direction: column;
}

.asset-list.active {
  display: flex;
}

.view-all-btn {
  margin-top: 2rem;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow-accent);
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.5);
}

.service-btn {
  background: var(--box-bg);
  color: var(--text);
  padding: var(--spacing-md) var(--spacing-lg);
  border: 2px solid var(--card-border);
  border-radius: var(--border-radius);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-smooth);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.service-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.4s var(--transition-smooth);
  z-index: 0;
}

.service-btn span {
  position: relative;
  z-index: 1;
  transition: color 0.3s var(--transition-smooth);
}

.service-btn:hover::before { 
  left: 0;
}

.service-btn:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

/* Mobile hamburger in header */
.mobile-hamburger {
  background: var(--box-bg);
  border: 2px solid var(--card-border);
  border-radius: var(--border-radius-sm);
  width: 42px;
  height: 42px;
  color: black;
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-smooth);
  align-items: center;
  justify-content: center;
}

.mobile-hamburger:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-accent);
}

/* ===========================================
   ANIMATIONS
   =========================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1) translateY(-50%); 
    opacity: 1;
  }
  50% { 
    transform: scale(1.2) translateY(-50%);
    opacity: 0.8;
  }
}

/* ===========================================
   RESPONSIVE STYLES
   =========================================== */

@media (max-width: 768px) {
  .login-container,
  .register-container {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
  }

  .left-section,
  .right-section {
    max-width: 100%;
    width: 100%;
  }

  .left-section h1 {
    font-size: 1.75rem;
  }

  .hamburger {
    display: flex;
  }
  
  .desktop-nav, .desktop-auth {
    display: none;
  }

  .buy-page .header {
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
  }
  
  .buy-page .main-content {
    padding-top: 90px;
  }

  .buy-container {
    max-width: 100%;
    padding: 0 1rem;
  }

  .price-card,
  .buy-form,
  .transactions-section {
    padding: 1.5rem;
  }

  .current-price {
    font-size: 2.25rem;
  }

  .tab-buttons {
    grid-template-columns: 1fr;
  }

  .dashboard-page .header {
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    justify-content: space-between;
    align-items: center;
  }
  
  .dashboard-page .main-content {
    padding-top: 90px;
  }

  .sidebar {
    width: 100%;
    height: 100vh;
    z-index: 1040;
  }

  .main-content {
    margin-left: 0;
    padding: 5px;
  }

  .dashboard-content-card {
    padding: 10px;
    margin: 0;
  }
  
  .account-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .action-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .announcement {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }
  
  .announcement-text h3 {
    font-size: 1.2rem;
  }
  
  .announcement-text p {
    font-size: 0.9rem;
  }

  .referral-text {
    display: none;
  }
  
  .referral-btn {
    gap: 0.25rem;
    padding: 0.75rem 1.25rem;
  }

  .sidebar-header {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 1rem;
  }
  
  .sidebar-header h2 {
    margin-bottom: 0;
  }
  
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .asset-grid {
    grid-template-columns: 1fr;
  }

  .hero-section h1 {
    font-size: 2.25rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.05rem;
  }
}

/* Mobile Sidebar Toggle */
@media (min-width: 769px) {
  .sidebar {
    transform: none;
    position: fixed;
    width: 250px;
    height: 100vh;
    left: 0;
  }
  .main-content {
    margin-left: 250px;
  }
  .hamburger {
    display: none;
  }
}
/* ===========================================
   FUNDING PAGE STYLES
   =========================================== */

.funding-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--card-border);
}

.funding-tab {
  background: #000000;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  border-bottom: 3px solid transparent;
}

.funding-tab:hover {
  color: var(--accent);
}

.funding-tab.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.funding-tab-content {
  margin-top: 2rem;
}

.funding-panel {
  display: none;
}

.funding-panel.active {
  display: block;
}

.funding-account-card {
  background: var(--gradient-card);
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--transition-smooth);
}

.funding-account-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.account-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--card-border);
}

.account-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Courier New', monospace;
}

.copy-btn-small {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 6px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  font-size: 0.9rem;
  box-shadow: var(--shadow-accent);
}

.copy-btn-small:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.account-info-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.account-info-row i {
  color: var(--accent);
  font-size: 1.1rem;
}

.account-info-row span {
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 768px) {
  .funding-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .funding-tab {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  .funding-account-card {
    padding: 1.25rem;
  }
  
  .account-number {
    font-size: 0.95rem;
  }
}
/* Token Header Card */
.token-header-card {
  background: var(--gradient-card);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.token-header-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-secondary);
}

.token-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  background: var(--gradient-subtle);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--card-border);
}

.token-info-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.token-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--box-bg);
  box-shadow: var(--shadow-md);
}

.token-icon-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.currency-selector-right {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient-secondary);
  color: white;
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-blue);
  transition: all 0.3s var(--transition-smooth);
}

.currency-selector-right:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

@media (max-width: 768px) {
  .token-info-header {
    gap: 1rem;
  }
  
  .token-info-left {
    flex-direction: column;
  }
  
  .token-price-info {
    width: 100%;
  }
  
  .token-price-info > div {
    text-align: center !important;
  }
  
  .currency-selector-right {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }
}

/* Buy Page Tabs */
.buy-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border: 2px solid var(--card-border);
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
  background: var(--box-bg);
  margin-bottom: 2rem;
}

.buy-tab-btn {
  padding: 1rem;
  border: none;
  background: transparent;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-secondary);
}

.buy-tab-btn:hover {
  color: var(--text);
  background: var(--accent-subtle);
}

.buy-tab-btn.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-accent);
}

.buy-tab-content {
  display: none;
}

.buy-tab-content.active {
  display: block;
}

/* Price List */
.price-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  background: var(--gradient-card);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--transition-smooth);
}

.price-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.price-item-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price-item-right {
  text-align: right;
}

@media (max-width: 768px) {
  .buy-tabs {
    gap: 0.5rem;
    padding: 0.25rem;
  }
  
  .buy-tab-btn {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .price-item {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .price-item-left {
    flex-direction: column;
  }
  
  .price-item-right {
    text-align: center;
  }
}

/* Currency Select Dropdown */
.currency-select-right {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--box-bg);
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--transition-smooth);
  font-family: 'Poppins', sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23dc2626' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 12px;
}

.currency-select-right:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: var(--shadow-lg);
  background: var(--accent-subtle);
}

.currency-select-right:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-subtle), var(--shadow-md);
}

.currency-select-right option {
  background: var(--box-bg);
  color: var(--text);
  padding: 0.5rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .currency-select-right {
    font-size: 0.75rem;
    padding: 0.5rem 1.75rem 0.5rem 0.6rem;
    background-size: 10px;
  }
}
/* ===========================================
   TRANSACTIONS HISTORY PAGE STYLES
   =========================================== */

.transactions-filter {
  background: var(--gradient-card);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
}

.transactions-filter h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.transactions-list {
  background: var(--gradient-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.transaction-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  background: var(--gradient-subtle);
  border-bottom: 1px solid var(--card-border);
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.transaction-header-left {
  flex: 1;
}

.transaction-header-right {
  display: flex;
  gap: 8rem;
  align-items: center;
}

.transaction-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--card-border);
  transition: all 0.3s var(--transition-smooth);
  cursor: pointer;
}

.transaction-item:last-child {
  border-bottom: none;
}

.transaction-item:hover {
  background: var(--gradient-subtle);
  transform: translateX(4px);
}

.transaction-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.transaction-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.transaction-details h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.25rem 0;
}

.transaction-details p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  font-family: 'Courier New', monospace;
}

.transaction-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.transaction-amount {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  min-width: 180px;
  text-align: right;
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.status-badge.completed {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success-color);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.pending {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning-color);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-badge.failed {
  background: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.transaction-right .bi-chevron-right {
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all 0.3s var(--transition-smooth);
}

.transaction-item:hover .bi-chevron-right {
  color: var(--accent);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .transactions-filter {
    padding: 1.25rem 1.5rem;
  }

  .transaction-header {
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
  }

  .transaction-header-right {
    gap: 3rem;
  }

  .transaction-item {
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .transaction-info {
    width: 100%;
  }

  .transaction-right {
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
  }

  .transaction-amount {
    min-width: auto;
    text-align: left;
    font-size: 0.95rem;
  }

  .status-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}

   .sidebar {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.sidebar.open {
  transform: translateX(0);
}

.hamburger {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}