/* ===== VARIABLES & RESET ===== */
:root {
  /* Colors */
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #60a5fa;
  --secondary: #f59e0b;
  --accent: #8b5cf6;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --dark: #1f2937;
  --darker: #111827;
  --light: #f8fafc;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #3b82f6, #1d4ed8);
  --gradient-dark: linear-gradient(135deg, #1f2937, #111827);
  --gradient-success: linear-gradient(135deg, #10b981, #047857);
  --gradient-danger: linear-gradient(135deg, #ef4444, #dc2626);
  --gradient-gold: linear-gradient(135deg, #f59e0b, #d97706);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  height: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--darker);
  color: var(--light);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: var(--space-md);
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity var(--transition-normal);
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  max-width: 400px;
  padding: var(--space-xl);
}

.preloader-logo {
  margin-bottom: var(--space-xl);
}

.preloader-logo i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.preloader-logo h1 {
  font-size: 1.75rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preloader-spinner {
  margin-bottom: var(--space-lg);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-700);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-full);
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--gray-700);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
  width: 0%;
}

.progress-text {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: var(--space-lg);
}

.preloader-tips p {
  font-size: 0.9rem;
  color: var(--gray-400);
  font-style: italic;
}

/* ===== LOGIN SCREEN ===== */
.login-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.login-container {
  text-align: center;
  padding: var(--space-2xl);
  max-width: 400px;
  width: 90%;
}

.login-container h1 {
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.login-container p {
  color: var(--gray-400);
  margin-bottom: var(--space-2xl);
  font-size: 1.125rem;
}

/* Login form styles */
.login-form-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-md);
  text-align: left;
}

.form-group label {
  display: block;
  color: var(--light);
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--gray-800);
  border: 2px solid var(--gray-700);
  border-radius: var(--radius-lg);
  color: var(--light);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
  color: var(--gray-500);
}

/* Password input wrapper */
.password-input-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1.125rem;
  transition: color var(--transition-fast);
}

.toggle-password:hover {
  color: var(--primary);
}

/* Form buttons */
.form-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.btn-google {
  background: white;
  color: var(--gray-800);
  font-weight: 600;
  border: 1px solid var(--gray-300);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  transition: all var(--transition-fast);
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: var(--space-sm);
}

.btn-google:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-email {
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  border: none;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  transition: all var(--transition-fast);
  font-family: inherit;
  cursor: pointer;
  margin-bottom: var(--space-sm);
}

.btn-email:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Form links and toggle */
.form-links {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-sm);
}

.form-link {
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.form-link:hover {
  color: var(--primary-light);
  background: rgba(59, 130, 246, 0.1);
}

.auth-toggle {
  text-align: center;
  margin-top: var(--space-md);
  color: var(--gray-400);
  font-size: 0.875rem;
}

.auth-toggle button {
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin-left: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.auth-toggle button:hover {
  color: var(--primary-light);
  background: rgba(59, 130, 246, 0.1);
}

/* Error message */
.error-message {
  background: var(--danger);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
  text-align: center;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Success message */
.success-message {
  background: var(--success);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
  text-align: center;
  animation: slideIn 0.3s ease-out;
}

/* Reset password form */
.reset-password-form {
  margin-top: var(--space-xl);
}

.reset-password-form h3 {
  color: var(--light);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.reset-password-form p {
  color: var(--gray-400);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}

.back-to-login {
  text-align: center;
  margin-top: var(--space-lg);
}

.back-to-login button {
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.back-to-login button:hover {
  color: var(--primary-light);
  background: rgba(59, 130, 246, 0.1);
}

/* ===== APP CONTAINER ===== */
.app-container {
  display: none;
  min-height: 100vh;
  background: var(--darker);
  position: relative;
  padding-bottom: 70px;
}

/* ===== HEADER ===== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(31, 41, 55, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-700);
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 60px;
}

.menu-btn {
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-btn:hover {
  background: var(--gray-700);
  transform: translateY(-1px);
}

.header-title-container {
  flex: 1;
  text-align: center;
  margin: 0 0.5rem;
}

.header-title-container h1 {
  font-size: 1.1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.coin-display {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--gray-800);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-600);
  min-width: 70px;
  justify-content: center;
  flex-shrink: 0;
}

.coin-display i {
  color: var(--secondary);
  font-size: 1rem;
}

.coin-display span {
  font-weight: 600;
  font-size: 0.8rem;
}

/* ===== ACCOUNT MENU ===== */
.account-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--darker);
  z-index: 200;
  padding: 1.5rem 1rem;
  overflow-y: auto;
  display: none;
}

.account-menu.active {
  display: block;
}

.account-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-700);
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.account-header img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  border: 2px solid var(--primary);
}

.account-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.account-info p {
  color: var(--gray-400);
  margin: 0;
  font-size: 0.9rem;
}

.user-stats {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.stat-card {
  background: var(--gray-800);
  padding: 1rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--gray-700);
  transition: all var(--transition-fast);
  flex: 1;
  min-width: 100px;
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.account-stats {
  background: var(--gray-800);
  padding: 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  border: 1px solid var(--gray-700);
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.9rem;
}

.stat-item:not(:last-child) {
  border-bottom: 1px solid var(--gray-700);
}

.stat-item i {
  width: 20px;
  color: var(--primary);
}

.account-menu .btn {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.btn-logout {
  background: var(--gray-700);
  color: var(--light);
  width: 100%;
}

.btn-danger {
  background: var(--gradient-danger);
  color: white;
  width: 100%;
}

.close-account-btn {
  width: 100%;
  background: var(--gray-700);
  color: var(--light);
  border: none;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 1rem;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-size: 0.9rem;
}

.close-account-btn:hover {
  background: var(--gray-600);
  transform: translateY(-1px);
}

/* ===== MAIN SCREEN ===== */
.main {
  padding: 1.5rem 1rem;
  display: none;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.main.active {
  display: block;
}

.progress-container {
  width: 100%;
  height: 6px;
  background: var(--gray-700);
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  overflow: hidden;
}

#progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
  width: 0%;
}

.badge {
  text-align: center;
  margin-bottom: 2rem;
}

.badge-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-full);
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gray-600);
  transition: all var(--transition-normal);
}

.badge-icon:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

.badge-icon img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
}

.badge-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.25rem;
}

.badge-subtitle {
  color: var(--gray-400);
  font-size: 0.8rem;
}

.counter {
  text-align: center;
  margin-bottom: 2rem;
}

.days {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.time {
  font-size: 1.25rem;
  color: var(--gray-400);
  font-weight: 500;
}

.motivation {
  text-align: center;
  font-style: italic;
  color: var(--gray-400);
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--primary);
  font-size: 0.9rem;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 300px;
  margin: 0 auto;
}

.btn-group-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border: none;
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 48px;
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.btn:not(:disabled):hover {
  transform: translateY(-2px);
}

.btn:not(:disabled):active {
  transform: translateY(0);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-start {
  background: var(--gradient-success);
  color: white;
  font-weight: 600;
}

.btn-reset {
  background: var(--gradient-danger);
  color: white;
  font-weight: 600;
}

.btn-donate {
  background: var(--gradient-gold);
  color: white;
  font-weight: 600;
}

.btn-help {
  background: var(--gray-700);
  color: var(--light);
  font-weight: 600;
}

.btn-cancel {
  background: var(--gray-600);
  color: var(--light);
}

.btn-confirm {
  background: var(--gradient-primary);
  color: white;
}

/* ===== COINS SCREEN ===== */
.coins-screen {
  padding: 1.5rem 1rem;
  display: none;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.coins-screen.active {
  display: block;
}

.coins-title {
  text-align: center;
  margin-bottom: 1.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
}

.coins-top-section {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}

.coin-balance-compact {
  background: var(--gradient-gold);
  padding: 1rem;
  border-radius: var(--radius-lg);
  text-align: center;
  color: white;
  box-shadow: var(--shadow-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.coin-icon-compact {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.coin-amount-compact {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.coin-label-compact {
  font-size: 0.8rem;
  opacity: 0.9;
}

.next-reward-compact {
  background: var(--gray-800);
  padding: 1rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--gray-700);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.next-reward-compact h3 {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.time-to-reward-compact {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.bonus-info-compact {
  background: var(--gray-800);
  padding: 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-700);
}

.bonus-info-compact h3 {
  font-size: 1rem;
  color: var(--gray-300);
  margin-bottom: 1rem;
}

.streak-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.streak-count {
  color: var(--gray-400);
}

.streak-bonus {
  color: var(--secondary);
  font-weight: 600;
}

.streak-bar-compact {
  width: 100%;
  height: 6px;
  background: var(--gray-700);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.streak-bar-fill-compact {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
  width: 0%;
}
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: var(--gray-700);
  color: var(--light);
  text-align: center;
  border-radius: var(--radius-md);
  padding: 0.5rem;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity var(--transition-fast);
  font-size: 0.75rem;
  border: 1px solid var(--gray-600);
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
/* ===== REFERRAL SYSTEM ===== */
.referral-section {
  background: var(--gray-800);
  padding: 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-700);
}

.referral-section h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--light);
  font-size: 1.1rem;
}

.referral-code-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.referral-code {
  flex: 1;
  background: var(--darker);
  padding: 0.875rem;
  border-radius: var(--radius-lg);
  font-family: monospace;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  border: 1px solid var(--gray-600);
  color: var(--primary);
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.btn-copy {
  background: var(--gray-700);
  color: var(--light);
  border: none;
  padding: 0.875rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.btn-copy:hover {
  background: var(--gray-600);
  transform: translateY(-1px);
}

.btn-share {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.btn-share:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.referral-stats {
  display: flex;
  gap: 0.75rem;
}

.referral-stat {
  text-align: center;
  padding: 1rem;
  background: var(--darker);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-700);
  flex: 1;
}

.referral-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.referral-stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#enter-referral-btn {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gray-700);
  color: var(--light);
  border: none;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

#enter-referral-btn:hover {
  background: var(--gray-600);
  transform: translateY(-1px);
}

/* ===== TRANSACTIONS ===== */
.transaction-history {
  background: var(--gray-800);
  padding: 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-700);
}

.transaction-history h3 {
  margin-bottom: 1rem;
  color: var(--light);
  text-align: center;
  font-size: 1.1rem;
}

.transactions-list {
  max-height: 300px;
  overflow-y: auto;
}

.transaction {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem;
  border-bottom: 1px solid var(--gray-700);
  transition: background-color var(--transition-fast);
  gap: 0.75rem;
}

.transaction:hover {
  background: var(--gray-700);
}

.transaction:last-child {
  border-bottom: none;
}

.transaction-details {
  flex: 1;
  min-width: 0;
}

.transaction-description {
  font-weight: 500;
  color: var(--light);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.9rem;
}

.transaction-date {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.transaction-amount {
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.transaction-amount.positive {
  color: var(--success);
}

.transaction-amount.negative {
  color: var(--danger);
}

/* ===== ACHIEVEMENTS SCREEN ===== */
.achievements {
  padding: 1.5rem 1rem;
  display: none;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.achievements.active {
  display: block;
}

.achievements-title {
  text-align: center;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.achievement {
  background: var(--gray-800);
  padding: 1rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.achievement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.achievement:hover::before {
  opacity: 1;
}

.achievement.unlocked {
  border-color: var(--success);
  background: linear-gradient(135deg, var(--gray-800), rgba(16, 185, 129, 0.1));
}

.achievement.locked {
  border-color: var(--gray-600);
  opacity: 0.7;
}

.achievement.current {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--gray-800), rgba(59, 130, 246, 0.15));
  transform: scale(1.02);
}

.achievement-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gray-600);
  transition: all var(--transition-normal);
}

.achievement.unlocked .achievement-icon {
  border-color: var(--success);
}

.achievement.current .achievement-icon {
  border-color: var(--primary);
}

.achievement-icon img {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
}

.achievement-text {
  flex: 1;
  min-width: 0;
}

.achievement-text .title {
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1rem;
}

.achievement-text .desc {
  color: var(--gray-400);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.achievement-progress {
  width: 100%;
  height: 4px;
  background: var(--gray-700);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.achievement-progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
  width: 0%;
}

.achievement.unlocked .achievement-progress-fill {
  background: var(--gradient-success);
}

/* ===== CALENDAR SCREEN ===== */
.calendar-screen {
  padding: 1.5rem 1rem;
  display: none;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.calendar-screen.active {
  display: block;
}

.calendar-title {
  text-align: center;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  background: var(--gray-800);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-700);
  gap: 0.5rem;
}

.calendar-nav-btn {
  background: var(--gray-700);
  color: var(--light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calendar-nav-btn:hover {
  background: var(--gray-600);
  transform: scale(1.1);
}

.calendar-header h3 {
  margin: 0;
  color: var(--light);
  font-size: 1rem;
  text-align: center;
  flex: 1;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 1.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.75rem;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.day-header {
  font-weight: 600;
  color: var(--gray-400);
  background: transparent !important;
  border: none !important;
  font-size: 0.7rem;
}

.day-empty {
  background: transparent;
  border: none;
}

.day-success {
  background: var(--gradient-success);
  color: white;
  border-color: var(--success);
}

.day-fail {
  background: var(--gradient-danger);
  color: white;
  border-color: var(--danger);
}

.day-future {
  background: var(--gray-700);
  color: var(--gray-400);
  border-color: var(--gray-600);
}

.day-current {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px var(--primary);
  transform: scale(1.1);
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.legend-color {
  width: 14px;
  height: 14px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
}

.day-success.legend-color {
  background: var(--success);
}

.day-fail.legend-color {
  background: var(--danger);
}

.day-future.legend-color {
  background: var(--gray-600);
}

/* ===== TIPS SCREEN ===== */
.tips-screen {
  padding: 1.5rem 1rem;
  display: none;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.tips-screen.active {
  display: block;
}

.tips-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.tips-header h3 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.tips-header p {
  color: var(--gray-400);
  font-style: italic;
  margin: 0;
  font-size: 0.9rem;
}

.tips-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tip-category {
  background: var(--gray-800);
  padding: 1rem 0.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-height: 80px;
  justify-content: center;
}

.tip-category:hover {
  transform: translateY(-2px);
  border-color: var(--gray-600);
}

.tip-category.active {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--gray-800), rgba(59, 130, 246, 0.1));
}

.tip-category i {
  font-size: 1.25rem;
  color: var(--primary);
}

.tip-category span {
  font-weight: 500;
  color: var(--light);
  font-size: 0.8rem;
}

.tips-list {
  background: var(--gray-800);
  padding: 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-700);
  min-height: 200px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-bottom: 1px solid var(--gray-700);
  transition: background-color var(--transition-fast);
}

.checkbox-item:hover {
  background: var(--gray-700);
}

.checkbox-item:last-child {
  border-bottom: none;
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.checkbox-item label {
  color: var(--light);
  cursor: pointer;
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
}

.checkbox-item input[type="checkbox"]:checked + label {
  color: var(--gray-400);
  text-decoration: line-through;
}

/* ===== NEW FEATURE SCREEN ===== */
.new-feature-screen {
  padding: 1.5rem 1rem;
  display: none;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.new-feature-screen.active {
  display: block;
}

.new-feature-title {
  text-align: center;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
}

.new-feature-content {
  background: var(--gray-800);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-700);
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
}

.new-feature-content p {
  margin: 0;
  color: var(--gray-300);
  font-size: 1.1rem;
}
/* Сховати кнопку New */
#new-feature-btn {
  display: none !important;
}

/* Сховати екран New Feature */
.new-feature-screen {
  display: none !important;
}

/* Оновити розміщення інших кнопок у футері */
@media (max-width: 768px) {
  .footer-btn {
    max-width: 20%; /* Замість 16.666% для 5 кнопок */
  }
}

@media (min-width: 768px) {
  .footer-btn {
    max-width: 20%; /* Замість 16.666% для 5 кнопок */
  }
}

/* ===== MODALS ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.modal-content {
  background: var(--gray-800);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  max-width: 340px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--gray-700);
  box-shadow: var(--shadow-xl);
  animation: modalSlideIn 0.3s ease-out;
  margin: 0 auto;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.modal h3 {
  margin-bottom: 0.75rem;
  color: var(--light);
  font-size: 1.1rem;
}

.modal p {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.modal-buttons {
  display: flex;
  gap: 0.75rem;
}

.modal-buttons .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.referral-input-modal .modal-content {
  max-width: 320px;
}

.referral-input {
  width: 100%;
  padding: 0.875rem;
  background: var(--darker);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius-lg);
  color: var(--light);
  font-family: monospace;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.referral-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* ===== NOTIFICATION ===== */
.notification {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gray-800);
  color: var(--light);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  opacity: 0;
  transition: all var(--transition-normal);
  border: 1px solid var(--gray-700);
  max-width: 300px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.9rem;
}

.notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== CUSTOM ALERT ===== */
.custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.custom-alert-content {
  background: var(--gray-800);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  max-width: 340px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--gray-700);
  box-shadow: var(--shadow-xl);
  margin: 0 auto;
}

.custom-alert-message {
  color: var(--light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
  font-size: 0.9rem;
}

.custom-alert-buttons {
  display: flex;
  gap: 0.75rem;
}

.custom-alert-buttons .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

/* ===== FOOTER MENU ===== */
.footer-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(31, 41, 55, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--gray-700);
  display: flex;
  padding: 0.5rem 0.25rem;
  z-index: 100;
  justify-content: space-between;
  align-items: stretch;
  min-height: 70px;
}

.footer-btn {
  background: none;
  border: none;
  color: var(--gray-400);
  padding: 0.5rem 0.25rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  flex: 1;
  min-width: 0; /* Важливо: дозволяє тексту обрізатися */
  max-width: 16.666%; /* Рівномірно розподіляє 6 кнопок */
  height: 100%;
  justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

.footer-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  transition: background-color var(--transition-fast);
}

.footer-btn:active::after {
  background: rgba(255, 255, 255, 0.1);
}

.footer-btn:hover {
  color: var(--light);
  background: var(--gray-700);
  transform: translateY(-2px);
}

.footer-btn i {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.footer-btn span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  padding: 0 2px;
  font-weight: 500;
  line-height: 1.1;
  font-size: 0.65rem;
}

/* Специфічні стилі для кнопки STOFCOIN (довший текст) */
#coins-btn span {
  font-size: 0.6rem;
  padding: 0 1px;
}

/* Адаптивність для маленьких екранів */
@media (max-width: 320px) {
  .footer-btn span {
    font-size: 0.6rem;
    padding: 0 1px;
  }
  
  #coins-btn span {
    font-size: 0.55rem;
  }
  
  .footer-btn i {
    font-size: 1rem;
  }
}

/* Збільшення області натискання для мобільних */
@media (max-width: 768px) {
  .footer-btn {
    min-height: 60px;
    padding: 0.75rem 0.25rem;
  }
  
  /* Збільшення області натискання */
  .footer-btn::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 70px;
    background: transparent;
    z-index: -1;
  }
}

/* Десктопні стилі */
@media (min-width: 768px) {
  .footer-menu {
    padding: 0.75rem 0.5rem;
    min-height: 80px;
  }
  
  .footer-btn {
    padding: 0.75rem 0.25rem;
    font-size: 0.75rem;
    max-width: 16.666%;
  }
  
  .footer-btn i {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
  }
  
  .footer-btn span {
    font-size: 0.7rem;
    padding: 0 3px;
  }
  
  #coins-btn span {
    font-size: 0.65rem;
  }
}

/* Для дуже широких екранів */
@media (min-width: 1024px) {
  .footer-menu {
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-left: 1px solid var(--gray-700);
    border-right: 1px solid var(--gray-700);
  }
}

/* ===== CLOSE BUTTONS ===== */
.close-btn {
  width: 100%;
  background: var(--gray-700);
  color: var(--light);
  border: none;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 1rem;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-size: 0.9rem;
}

.close-btn:hover {
  background: var(--gray-600);
  transform: translateY(-1px);
}

/* ===== UTILITY CLASSES ===== */
.formatted-number {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ===== TABLET STYLES (768px+) ===== */
@media (min-width: 768px) {
  .app-container {
    padding-bottom: 80px;
  }
  
  .header {
    padding: 1rem 1.5rem;
    min-height: 70px;
  }
  
  .menu-btn {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
  
  .header-title-container h1 {
    font-size: 1.25rem;
  }
  
  .coin-display {
    padding: 0.75rem 1rem;
    min-width: 90px;
  }
  
  .coin-display i {
    font-size: 1.125rem;
  }
  
  .coin-display span {
    font-size: 0.875rem;
  }
  
  .main,
  .coins-screen,
  .achievements,
  .calendar-screen,
  .tips-screen,
  .new-feature-screen {
    padding: 2rem 1.5rem;
    max-width: 450px;
  }
  
  .badge-icon {
    width: 120px;
    height: 120px;
  }
  
  .badge-icon img {
    width: 80px;
    height: 80px;
  }
  
  .badge-title {
    font-size: 1.5rem;
  }
  
  .days {
    font-size: 3rem;
  }
  
  .time {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 1rem 1.25rem;
    min-height: 54px;
    font-size: 1rem;
  }
  
  .footer-menu {
    padding: 0.75rem;
  }
  
  .footer-btn {
    max-width: 70px;
    min-height: 60px;
    font-size: 0.75rem;
  }
  
  .footer-btn i {
    font-size: 1.25rem;
  }
  
  .modal-content {
    max-width: 380px;
    padding: 2rem;
  }
  
  .notification {
    bottom: 90px;
    max-width: 350px;
  }
}

/* ===== DESKTOP STYLES (1024px+) ===== */
@media (min-width: 1024px) {
  .main,
  .coins-screen,
  .achievements,
  .calendar-screen,
  .tips-screen,
  .new-feature-screen {
    max-width: 500px;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .achievement {
    padding: 1.25rem;
    gap: 1.25rem;
  }
  
  .achievement-icon {
    width: 60px;
    height: 60px;
  }
  
  .achievement-icon img {
    width: 40px;
    height: 40px;
  }
  
  .modal-content {
    max-width: 400px;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles for keyboard navigation */
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary: #0000ff;
    --success: #008000;
    --danger: #ff0000;
    --warning: #ffa500;
  }
}

/* Print styles */
@media print {
  .footer-menu,
  .header,
  .modal,
  .notification {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}