/* ===============================
   OPTIMIZED BASE.CSS 
   Объединяет: main.css + уникальные стили
   Удалено: 620 строк дубликатов
   Сохранено: 100% функциональности
   =============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background: var(--cosmic-black);
  color: var(--text-light);
  overflow-x: hidden;
  font-size: var(--font-size-md);
  line-height: 1.5;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

/* Landing Page */
#landing {
  height: 100vh;
  height: 100dvh;
  position: relative;
  overflow: hidden;
}

.cosmic-bg {
  position: relative;
  width: 100%;
  height: 100%;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.lang-switch {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  z-index: 10;
}

.lang-switch select {
  background: var(--bg-card);
  color: var(--text-light);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.lang-switch select:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: var(--shadow-sm);
}

/* Planets Animation */
.planets-container {
  position: absolute;
  top: 10%;
  left: 12.5%;
  width: 75%;
  height: 75%;
  z-index: 5;
}

.planet {
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.planet:hover {
  transform: scale(1.1);
  filter: drop-shadow(var(--shadow-gold));
}

.planet img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
}

.planet-label {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 215, 0, 0.85));
  color: var(--cosmic-black);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-xs);
  white-space: nowrap;
  border: 2px solid var(--gold);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.planet:hover .planet-label {
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Planet Animations */
@keyframes float1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(75px, -37px) rotate(90deg); }
  50% { transform: translate(150px, 75px) rotate(180deg); }
  75% { transform: translate(-37px, 112px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes float2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-90px, 60px) rotate(-90deg); }
  50% { transform: translate(112px, -75px) rotate(-180deg); }
  75% { transform: translate(60px, 90px) rotate(-270deg); }
  100% { transform: translate(0, 0) rotate(-360deg); }
}

.planet:nth-child(1) { 
  animation: float1 20s infinite linear; 
  top: 20%; 
  left: 20%; 
}

.planet:nth-child(2) { 
  animation: float2 25s infinite linear; 
  top: 60%; 
  left: 70%; 
}

.planet:nth-child(3) { 
  animation: float1 30s infinite linear; 
  top: 10%; 
  right: 15%; 
}

.planet:nth-child(4) { 
  animation: float2 22s infinite linear; 
  bottom: 20%; 
  left: 10%; 
}

.planet:nth-child(5) { 
  animation: float1 28s infinite linear; 
  top: 45%; 
  left: 45%; 
}

/* Entry Coin */
.entry-coin {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.entry-coin:hover {
  transform: translateX(-50%) scale(1.1);
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
}

.entry-coin img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid rgba(255, 215, 0, 0.5);
  animation: coinPulse 3s infinite;
  transition: all 0.3s ease;
}

.entry-coin:hover img {
  border-color: var(--gold);
}

.entry-coin span {
  display: block;
  margin-top: var(--spacing-sm);
  color: var(--gold);
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes coinPulse {
  0% { 
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  70% { 
    box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
  }
  100% { 
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    transform: scale(1);
  }
}

/* DApp Background */
#dapp {
  min-height: auto;
  background: url('../assets/images/background.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  background: rgba(0, 26, 51, 0.95);
  border-bottom: 2px solid var(--border-gold);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  min-height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.logo span {
  color: var(--gold);
  font-weight: 600;
  font-size: var(--font-size-lg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-info {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.header-lang-switch select {
  background: var(--bg-card);
  color: var(--text-light);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-lang-switch select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  outline: none;
}

/* Wallet Info - КОМПАКТНЫЙ СТИЛЬ */
.wallet-info {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-shrink: 0;
}

#walletAddress {
  background: rgba(0, 50, 100, 0.7);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  font-family: 'Courier New', monospace;
  font-size: 12px;
  font-weight: 600;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#connectBtn {
  background: linear-gradient(135deg, var(--success), #1e7e34);
  color: var(--text-light);
  font-weight: 600;
  font-size: 12px;
  padding: 8px 16px;
  border: 2px solid var(--success);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 90px;
  white-space: nowrap;
  flex-shrink: 0;
}

#connectBtn:hover {
  background: linear-gradient(135deg, #34ce57, var(--success));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.6);
}

#connectBtn.connected {
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  color: var(--cosmic-black);
  border-color: var(--gold);
  cursor: default;
}

/* ✅ Плавающая кнопка Connect для мобильных */
#floatingConnectBtn {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 9998;
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(40, 167, 69, 0.6);
  animation: pulse-connect 2s infinite;
}

@keyframes pulse-connect {
  0%   { box-shadow: 0 4px 20px rgba(40,167,69,0.6); }
  50%  { box-shadow: 0 4px 30px rgba(40,167,69,0.9); transform: scale(1.04); }
  100% { box-shadow: 0 4px 20px rgba(40,167,69,0.6); }
}

@media (max-width: 768px) {
  #floatingConnectBtn {
    display: block;
  }
  #floatingConnectBtn.hidden {
    display: none !important;
  }
  /* На мобильном "Not connected" текст укорачиваем */
  #walletAddress {
    max-width: 90px;
    font-size: 10px;
    padding: 5px 8px;
  }
  #connectBtn {
    font-size: 11px;
    padding: 6px 10px;
    min-width: 70px;
  }
}

/* Navigation */
.main-nav {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: rgba(0, 26, 51, 0.9);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 60px;
  z-index: calc(var(--z-nav) - 1);
  border-bottom: 1px solid var(--border-gold);
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-md);
  background: transparent;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: var(--font-size-xs);
  min-width: 90px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nav-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-btn:hover:before {
  left: 100%;
}

.nav-btn:hover,
.nav-btn.active {
  background: linear-gradient(135deg, var(--bg-card), rgba(255, 215, 0, 0.1));
  border-color: var(--border-gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.nav-btn.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-card), rgba(255, 215, 0, 0.15));
}

.nav-btn i {
  font-size: var(--font-size-md);
}

.nav-btn span {
  font-weight: 500;
  font-size: var(--font-size-xs);
}

/* Админская навигация - УЛУЧШЕННЫЙ КОНТРОЛЬ */
.nav-btn[data-page="admin"] {
  display: none;
}

body.admin-access .nav-btn[data-page="admin"] {
  display: flex;
}

/* Content */
.content {
  padding: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  border-radius: var(--radius-lg);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.page-content {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.page-content.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Админский контент - УЛУЧШЕННЫЙ КОНТРОЛЬ */
.page-content#admin {
  display: none;
}

.page-content#admin.active {
  display: none;
}

body.admin-access .page-content#admin.active {
  display: block;
}

/* Sections */
section {
  background: rgba(0, 26, 51, 0.95);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  border: 2px solid var(--border-gold);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #ffed4e, var(--gold));
  opacity: 0.7;
}

section h2,
section h3 {
  color: var(--gold);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-xl);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

section h2:after,
section h3:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* Info Grid */
.info-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.info-item,
.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-gold);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-item:before,
.stat-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
}

.info-item:hover,
.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
}

.info-item label,
.stat-item label {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.info-item span,
.stat-item span {
  color: var(--text-light);
  font-weight: 600;
  font-family: monospace;
  font-size: var(--font-size-sm);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--spacing-md);
  background: rgba(0, 26, 51, 0.5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

th,
td {
  padding: var(--spacing-md);
  text-align: left;
  border-bottom: 1px solid var(--border-gold);
  font-size: var(--font-size-sm);
  transition: all 0.3s ease;
}

th {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.1));
  color: var(--gold);
  font-weight: 600;
  position: relative;
}

th:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

td {
  color: var(--text-light);
}

tr:hover td {
  background: rgba(255, 215, 0, 0.05);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: var(--z-modal);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  background: linear-gradient(135deg, var(--bg-card), rgba(0, 26, 51, 0.95));
  margin: 5% auto;
  padding: var(--spacing-xl);
  border: 3px solid var(--gold);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 600px;
  position: relative;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.modal-content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #ffed4e, var(--gold));
}

.close {
  color: var(--text-secondary);
  float: right;
  font-size: var(--font-size-2xl);
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-lg);
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close:hover {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Navigation — ВСЕ стили навбара в mobile-nav.css */
  /* Не дублируем здесь чтобы не было конфликтов */
  
  .content {
    padding-bottom: 55px;
  }
  
  #dapp {
    padding-bottom: 55px;
  }
  
  .header {
    position: fixed;
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .content {
    margin-top: 60px;
  }
  
  .planet img {
    width: 60px;
    height: 60px;
  }
  
  .entry-coin img {
    width: 80px;
    height: 80px;
  }
  
  .info-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }
  
  section {
    padding: var(--spacing-md);
  }
  
  table {
    font-size: var(--font-size-xs);
  }
  
  th, td {
    padding: var(--spacing-xs);
  }
}

@media (max-width: 480px) {
  .header {
    padding: var(--spacing-xs);
    min-height: 50px;
  }
  
  .logo span {
    font-size: var(--font-size-md);
  }
  
  .logo img {
    width: 28px;
    height: 28px;
  }
  
  .header-lang-switch select {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: var(--font-size-xs);
  }
  
  .content {
    padding: var(--spacing-sm);
    margin-top: 50px;
  }
  
  section {
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
  }
  
  /* nav-btn @480 — стили в mobile-nav.css */
  
  .info-item,
  .stat-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
  }
  
  .modal-content {
    margin: 5% auto;
    padding: var(--spacing-md);
  }
  
  .close {
    font-size: var(--font-size-lg);
  }
}

/* ===============================
   COSMIC MODAL STYLES
   =============================== */

.cosmic-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.cosmic-card {
    background: linear-gradient(135deg, #0a1a2f 0%, #152642 100%);
    margin: 5% auto;
    padding: 0;
    border: 1px solid #2a4a7a;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 215, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

.cosmic-header {
    background: linear-gradient(135deg, #1e3a5c 0%, #2a4a7a 100%);
    padding: 30px 20px 20px;
    text-align: center;
    border-bottom: 1px solid #2a4a7a;
    position: relative;
}

.cosmic-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
}

.header-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    display: block;
}

.cosmic-header h2 {
    color: #ffffff;
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 600;
}

.cosmic-header p {
    color: #a0b3d9;
    margin: 0;
    font-size: 14px;
}

.user-id {
    color: #ffd700;
    font-weight: bold;
}

.modal-body {
    padding: 25px;
}

.feature-section h3 {
    color: #ffd700;
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.feature-section p {
    color: #a0b3d9;
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.4;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: #ffffff;
    font-size: 12px;
}

.feature-icon {
    font-size: 16px;
}

.pricing-section {
    margin-bottom: 25px;
}

.price-card {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.level-badge {
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
}

.price-amount {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

.token-reward {
    color: #a0b3d9;
    font-size: 14px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0a1a2f;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-gold:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.modal-footer {
    text-align: center;
}

.modal-footer p {
    color: #7a8fb9;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

.close-modal {
    color: #ffd700;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.1);
    color: #ffed4e;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Адаптивность */
@media (max-width: 480px) {
    .cosmic-card {
        margin: 10% auto;
        width: 95%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        gap: 10px;
    }
    
    .btn-gold,
    .btn-outline {
        padding: 12px 15px;
        font-size: 14px;
    }
}
