/* ========================================
   FXTradePro - Global Styles
   ======================================== */

/* CSS Variables - Theme */
:root {
  --primary-yellow: #F0B90B;
  --primary-yellow-dark: #E5A600;
  --primary-yellow-light: #FFF3D6;
  --bg-white: #FFFFFF;
  --bg-light-gray: #F5F5F5;
  --bg-dark: #1A1A1A;
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --text-muted: #999999;
  --border-color: #E0E0E0;
  --success-green: #00C853;
  --error-red: #F44336;
  --buy-green: #26A641;
  --sell-red: #F85149;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --transition: all 0.2s ease;
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-light-gray);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary-yellow);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-yellow-dark);
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--primary-yellow-dark);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background: var(--bg-light-gray);
}

.btn-success {
  background: var(--buy-green);
  color: white;
}

.btn-success:hover {
  background: #219150;
}

.btn-danger {
  background: var(--sell-red);
  color: white;
}

.btn-danger:hover {
  background: #d63b2f;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  font-size: 14px;
  transition: var(--transition);
  background: var(--bg-white);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.15);
}

.form-input.error {
  border-color: var(--error-red);
}

.form-error {
  color: var(--error-red);
  font-size: 12px;
  margin-top: 4px;
}

.form-hint {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 4px;
}

/* Card */
.card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.card-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

/* Table */
.table {
  width: 100%;
  border-collapse: collapse;
}

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

.table th {
  background: var(--bg-light-gray);
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 12px;
  text-transform: uppercase;
}

.table tr:hover {
  background: rgba(240, 185, 11, 0.05);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.badge-success {
  background: rgba(0, 200, 83, 0.1);
  color: var(--success-green);
}

.badge-danger {
  background: rgba(244, 67, 54, 0.1);
  color: var(--error-red);
}

.badge-warning {
  background: rgba(240, 185, 11, 0.15);
  color: var(--primary-yellow-dark);
}

/* Tabs */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.tab-item {
  padding: 12px 24px;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.tab-item:hover {
  color: var(--text-primary);
}

.tab-item.active {
  color: var(--primary-yellow);
  border-bottom-color: var(--primary-yellow);
}

/* Price Colors */
.price-up {
  color: var(--buy-green);
}

.price-down {
  color: var(--sell-red);
}

/* ========================================
   INDEX PAGE - Landing Page
   ======================================== */

.index-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1f3c 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.index-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Header */
.index-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0) 100%);
}

.index-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.index-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-yellow);
  letter-spacing: -0.5px;
}

.index-logo span {
  color: white;
}

.index-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.index-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: var(--transition);
}

.index-nav a:hover {
  color: var(--primary-yellow);
}

.index-nav .btn {
  padding: 10px 20px;
}

/* Hero Section */
.index-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
}

.index-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.index-hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.index-hero h1 span {
  color: var(--primary-yellow);
}

.index-hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}

.index-hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.index-hero-btns .btn-primary {
  background: var(--primary-yellow);
  color: var(--text-primary);
  font-size: 16px;
  padding: 16px 40px;
}

.index-hero-btns .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 16px;
  padding: 16px 40px;
}

.index-hero-btns .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Features Section */
.index-features {
  padding: 80px 0;
  background: var(--bg-white);
}

.index-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.index-feature-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--border-radius-lg);
  background: var(--bg-light-gray);
  transition: var(--transition);
}

.index-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.index-feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-yellow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.index-feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.index-feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Partners Section */
.index-partners {
  padding: 60px 0;
  background: var(--bg-light-gray);
  border-top: 1px solid var(--border-color);
}

.index-partners h3 {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.index-partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.index-partner-logo {
  width: 120px;
  height: 40px;
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 12px;
}

/* Footer */
.index-footer {
  padding: 40px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
}

.index-footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.index-footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.index-footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.index-footer-links a {
  color: var(--text-secondary);
  font-size: 13px;
}

.index-footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========================================
   AUTH PAGES (Login / Register)
   ======================================== */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
  padding: 40px 20px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-yellow);
}

.auth-logo p {
  color: var(--text-secondary);
  margin-top: 8px;
}

.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form .btn {
  margin-top: 8px;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.auth-footer a {
  color: var(--primary-yellow);
  font-weight: 600;
}

/* ========================================
   DASHBOARD PAGE
   ======================================== */

.dashboard-page {
  min-height: 100vh;
  display: flex;
  background: var(--bg-light-gray);
}

/* Sidebar */
.dashboard-sidebar {
  width: 240px;
  background: var(--bg-white);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 50;
}

.dashboard-sidebar-logo {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.dashboard-sidebar-logo h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-yellow);
}

.dashboard-sidebar-logo h1 span {
  color: var(--text-primary);
}

.dashboard-nav {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}

.dashboard-nav-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
  gap: 12px;
}

.dashboard-nav-item:hover {
  background: var(--bg-light-gray);
  color: var(--text-primary);
}

.dashboard-nav-item.active {
  background: var(--primary-yellow-light);
  color: var(--primary-yellow-dark);
  border-left-color: var(--primary-yellow);
}

.dashboard-nav-item .nav-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.dashboard-nav-item .nav-badge {
  margin-left: auto;
  background: var(--error-red);
  color: white;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
}

.dashboard-sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-color);
}

.dashboard-sidebar-footer .btn {
  width: 100%;
  justify-content: center;
}

/* Main Content */
.dashboard-main {
  flex: 1;
  margin-left: 240px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Top Bar */
.dashboard-topbar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.dashboard-topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.dashboard-symbol {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-symbol-name {
  font-size: 18px;
  font-weight: 600;
}

.dashboard-symbol-price {
  font-size: 20px;
  font-weight: 700;
}

.dashboard-symbol-spread {
  font-size: 12px;
  color: var(--text-muted);
}

.dashboard-topbar-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.dashboard-account-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.account-info-item {
  text-align: center;
}

.account-info-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.account-info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.account-info-value.profit {
  color: var(--buy-green);
}

.account-info-value.loss {
  color: var(--sell-red);
}

/* Dashboard Content */
.dashboard-content {
  flex: 1;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
}

/* Trading Card */
.trading-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.trading-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trading-card-title {
  font-size: 16px;
  font-weight: 600;
}

.trading-card-body {
  padding: 20px;
}

/* Price Display */
.price-display {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 24px 0;
  text-align: center;
}

.price-box {
  min-width: 140px;
}

.price-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.price-value {
  font-size: 32px;
  font-weight: 700;
}

.price-value.buy {
  color: var(--buy-green);
}

.price-value.sell {
  color: var(--sell-red);
}

.price-spread {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* Chart Container */
.chart-container {
  height: 300px;
  background: var(--bg-light-gray);
  border-radius: var(--border-radius-md);
  margin-bottom: 20px;
}

/* Trading Panel */
.trading-panel {
  padding: 20px;
}

.trading-input-group {
  margin-bottom: 16px;
}

.trading-input-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.trading-input-row {
  display: flex;
  gap: 12px;
}

.trading-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 14px;
}

.trading-input:focus {
  outline: none;
  border-color: var(--primary-yellow);
}

/* Volume Slider */
.volume-slider-container {
  margin: 20px 0;
}

.volume-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: var(--bg-light-gray);
  border-radius: 3px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--primary-yellow);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.volume-slider-value {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-top: 12px;
  color: var(--text-primary);
}

.volume-slider-unit {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Trading Buttons */
.trading-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.trading-btn {
  padding: 16px;
  border-radius: var(--border-radius-md);
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
}

.trading-btn-buy {
  background: var(--buy-green);
  color: white;
}

.trading-btn-buy:hover {
  background: #219150;
}

.trading-btn-sell {
  background: var(--sell-red);
  color: white;
}

.trading-btn-sell:hover {
  background: #d63b2f;
}

/* P/L Display */
.pl-display {
  margin-top: 20px;
  padding: 16px;
  background: var(--bg-light-gray);
  border-radius: var(--border-radius-md);
  text-align: center;
}

.pl-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pl-value {
  font-size: 20px;
  font-weight: 700;
}

.pl-value.profit {
  color: var(--buy-green);
}

.pl-value.loss {
  color: var(--sell-red);
}

/* Positions & Orders */
.positions-card {
  grid-column: 1 / -1;
}

.orders-card {
  grid-column: 1 / -1;
}

/* Right Sidebar */
.dashboard-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Calendar Widget */
.calendar-widget {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 16px;
}

.calendar-header {
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calendar-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.calendar-item:last-child {
  border-bottom: none;
}

.calendar-time {
  font-size: 12px;
  color: var(--text-muted);
  min-width: 50px;
}

.calendar-event {
  font-size: 13px;
  color: var(--text-primary);
}

.calendar-impact {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: auto;
}

.calendar-impact.high {
  background: rgba(244, 67, 54, 0.1);
  color: var(--error-red);
}

.calendar-impact.medium {
  background: rgba(240, 185, 11, 0.15);
  color: var(--primary-yellow-dark);
}

.calendar-impact.low {
  background: rgba(0, 200, 83, 0.1);
  color: var(--success-green);
}

/* News Widget */
.news-widget {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  flex: 1;
  overflow-y: auto;
}

.news-header {
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.news-item:last-child {
  border-bottom: none;
}

.news-title {
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 4px;
}

.news-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* Account Summary */
.account-summary {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 16px;
}

.account-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.account-summary-item {
  padding: 8px 0;
}

.account-summary-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.account-summary-value {
  font-size: 14px;
  font-weight: 600;
}

/* ========================================
   DEPOSIT & WITHDRAW PAGES
   ======================================== */

.deposit-page,
.withdraw-page {
  min-height: 100vh;
  background: var(--bg-light-gray);
  padding: 40px 20px;
}

.deposit-container,
.withdraw-container {
  max-width: 600px;
  margin: 0 auto;
}

.deposit-card,
.withdraw-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  margin-bottom: 24px;
}

.deposit-card h2,
.withdraw-card h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.deposit-subtitle,
.withdraw-subtitle {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 14px;
}

.address-box {
  background: var(--bg-light-gray);
  border: 1px dashed var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.address-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.address-value {
  font-family: monospace;
  font-size: 14px;
  word-break: break-all;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.qr-placeholder {
  width: 160px;
  height: 160px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
}

.info-box {
  background: rgba(240, 185, 11, 0.1);
  border-radius: var(--border-radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.info-box p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.info-box strong {
  color: var(--text-primary);
}

/* ========================================
   PROFILE PAGE
   ======================================== */

.profile-page {
  min-height: 100vh;
  background: var(--bg-light-gray);
  padding: 40px 20px;
}

.profile-container {
  max-width: 800px;
  margin: 0 auto;
}

.profile-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  margin-bottom: 24px;
}

.profile-card h2 {
  font-size: 18px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.profile-info-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
}

.profile-info-label {
  font-size: 13px;
  color: var(--text-muted);
}

.profile-info-value {
  font-size: 14px;
  font-weight: 500;
}

.kyc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.kyc-status.verified {
  background: rgba(0, 200, 83, 0.1);
  color: var(--success-green);
}

.kyc-status.pending {
  background: rgba(240, 185, 11, 0.15);
  color: var(--primary-yellow-dark);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1280px) {
  .dashboard-content {
    grid-template-columns: 1fr;
  }
  
  .dashboard-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .index-hero h1 {
    font-size: 36px;
  }
  
  .index-hero p {
    font-size: 16px;
  }
  
  .index-features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .index-nav {
    display: none;
  }
  
  .dashboard-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .dashboard-sidebar.open {
    transform: translateX(0);
  }
  
  .dashboard-main {
    margin-left: 0;
  }
  
  .dashboard-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .dashboard-right {
    grid-template-columns: 1fr;
  }
  
  .price-display {
    gap: 24px;
  }
  
  .price-value {
    font-size: 24px;
  }
  
  .profile-info-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
