:root {
    --bg-main: #25293C; /* ← твой фон */

    --bar-bg:#161616;
    --bar2-bg:#1f1f1f;
    --link:#cfe9ff;
    --link-hover:#fff;
    --divide:rgba(255,255,255,.08);
}
  body {
  background: var(--bg-main);
  color: #25293C;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}


  main, header, .content, .card, .container {
    position: relative;
    z-index: 1;
  }

  .dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 40px;
  }

  .card {
    background: #393D55;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 0 12px rgba(0, 255, 217, 0.2);
    transition: 0.3s;
  }

  .card:hover {
    box-shadow: 0 0 20px rgba(0, 255, 217, 0.6);
    transform: scale(1.02);
  }

  .card h2 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #00ffd9;
  }

  .card p {
    margin: 0;
    font-size: 14px;
  }

  .card a {
    font-size: 28px;
    color: #00ffd9;
    text-decoration: none;
    transition: 0.2s;
  }

  .card a:hover {
    color: #00ffee;
  }

  .theme-toggle-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background: #00ffd9;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 10px #00ffd9;
    z-index: 9999;
  }

.logo-link {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.center-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  border-radius: 12px;
}

.center-nav a,
.center-nav .dropdown-toggle {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  position: relative;
  transition: color 0.2s ease;
  cursor: pointer;
}

.center-nav a:hover,
.center-nav .dropdown-toggle:hover {
  color: #0abde3;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: #1a1a2d;
  border: 1px solid #333;
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  z-index: 10;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #ccc;
  text-align: left;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #2c2c3d;
  color: #0abde3;
}

/* Показываем только по JS-классу .show */
.nav-dropdown.show .dropdown-menu {
  display: block;
}



.nav-item:hover .dropdown-menu {
  display: block;
}



/* Правая часть — пустой блок для выравнивания */
.spacer {
  flex: 1;
}

/* Основной блок */
.dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 30px;
}

/* Карточки */
.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 12px #0ff;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

.profile-card {
  display: flex;
  align-items: center;
  margin: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 8px #0ff;
  width: fit-content;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.profile-card:hover {
  transform: scale(1.03);
}
.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 15px;
  border: 2px solid #00bfff;
}
.profile-info {
  margin-left: 15px;
}
.role-label {
  font-size: 14px;
  color: #0ff;
  opacity: 0.8;
  text-transform: uppercase;
}

.user-menu {
  display: none;
  position: fixed;
  top: 90px;
  right: 30px;
  width: 280px;
  background: rgba(10, 10, 30, 0.95);
  border-radius: 12px;
  box-shadow: 0 0 15px #0ff;
  backdrop-filter: blur(15px);
  z-index: 999;
  padding: 20px;
  color: white;
}
.user-menu.active {
  display: block;
}
.user-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-details {
  display: flex;
  flex-direction: column;
}
.email {
  font-size: 12px;
  color: #aaa;
}
.user-links {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.user-links a {
  color: #0ff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.user-links a:hover {
  color: #fff;
}
.logout {
  color: #f44;
}

.profile-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-left: auto;
}

.profile-card-header:hover {
  background: rgba(255, 255, 255, 0.1);
}

.profile-card-header .profile-text {
  display: flex;
  flex-direction: column;
  text-align: left; /* ← это важно */
  align-items: flex-start; /* ← выравнивание по левому краю */
}


.profile-card-header .user-name {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}

.profile-card-header .role-label {
  font-size: 12px;
  color: #0ff;
  text-transform: uppercase;
}

.profile-card-header .avatar {
  width: 40px;
  height: 40px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  border: 2px solid #0ff;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}
.card {
  flex: 1 1 48%;
}

.user-menu {
  position: absolute;
  top: 80px;
  right: 30px;
  background: rgba(0, 0, 0, 0.95);
  border-radius: 10px;
  padding: 20px;
  display: none;
  z-index: 1000;
  box-shadow: 0 0 10px #0ff;
  width: 250px;
}

.user-menu.show {
  display: block;
}

.user-menu .user-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.user-menu .avatar {
  width: 50px;
  height: 50px;
  background-size: cover;
  border-radius: 50%;
  margin-right: 15px;
}

.user-menu .user-details {
  font-size: 14px;
  color: white;
}

.user-menu .user-links a {
  display: block;
  color: #0ff;
  text-decoration: none;
  margin-bottom: 10px;
}

.user-menu .user-links a.logout {
  color: #ff4f4f;
}

.user-menu hr {
  border: 0;
  border-top: 1px solid #333;
  margin: 10px 0;
}

.menu-link {
  transition: filter 0.2s ease;
}

.menu-link:hover,
.menu-link:focus {
  filter: brightness(0.9); /* Чуть темнее при наведении */
}

.menu-link:active {
  filter: brightness(0.8); /* Ещё темнее при клике */
}

.btn-link {
  background: #333;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-link:hover {
  background: #555;
}

/* === Стили страницы заявок === */

body.support-page {
  background: radial-gradient(ellipse at top left, #1a1a2e, #0f0c29);
  font-family: 'Orbitron', sans-serif;
}

.request-card {
  background: rgba(20, 20, 30, 0.9);
  border-left: 4px solid #00bcd4;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
  color: #f1f1f1;
}

.request-card h3 {
  margin-top: 0;
  color: #ffffff;
}

.status.open {
  color: #ffc107;
  font-weight: bold;
}

.status.closed {
  color: #4caf50;
  font-weight: bold;
}

.admin-reply {
  background: #2e7d32;
  color: #d0f0d0;
  padding: 12px;
  border-radius: 8px;
  margin-top: 15px;
}

.reply-box textarea {
  width: 100%;
  padding: 10px;
  background: #1e1e2e;
  color: #fff;
  border: 1px solid #555;
  border-radius: 6px;
  margin-top: 10px;
}

.reply-box button, .toggle-btn {
  background: #00bcd4;
  border: none;
  padding: 10px 18px;
  color: #fff;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.reply-box button:hover, .toggle-btn:hover {
  background: #0097a7;
}

.settings-form {
    background: rgba(30, 30, 50, 0.95);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

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

.settings-form label {
    display: block;
    color: #ccc;
    font-weight: 600;
    margin-bottom: 6px;
}

.settings-form .form-control {
    width: 100%;
    padding: 12px;
    background: #1e1e2e;
    border: 1px solid #555;
    color: #fff;
    border-radius: 6px;
    transition: border 0.2s;
}

.settings-form .form-control:focus {
    border-color: #00bcd4;
    outline: none;
}

.btn-save {
    background: linear-gradient(to right, #00bcd4, #0097a7);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.btn-save:hover {
    background: linear-gradient(to right, #00acc1, #00838f);
}

/* Кнопка в стиле космоса */
.btn-cosmic {
  background: linear-gradient(135deg, #00bcd4, #1a237e);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background 0.3s ease, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.4);
}

.btn-cosmic:hover {
  background: linear-gradient(135deg, #00acc1, #0d47a1);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 188, 212, 0.6);
}

.btn-cosmic:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 188, 212, 0.3);
}

.card {
  margin-bottom: 20px;
}

.notification-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.notification-left,
.notification-right {
  display: flex;
  align-items: center;
}

#createForm form {
  background: linear-gradient(to right, #1e1e2f, #232334);
  border: 2px solid #00bcd4;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 188, 212, 0.2);
  color: #ffffff;
  margin-bottom: 30px;
}

#createForm .form-label {
  color: #cccccc;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

#createForm input[type="text"],
#createForm textarea {
  background: #2c2c3c;
  border: 1px solid #444;
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  width: 100%;
  margin-top: 5px;
}

#createForm input[type="text"]:focus,
#createForm textarea:focus {
  border-color: #00bcd4;
  outline: none;
  background: #2e2e40;
}

.bg-project {
    background: linear-gradient(to bottom right, #0f0c29, #302b63, #24243e);
    min-height: 100vh;
}

.user-card {
    background-color: #1c1c2e;
    border: 1px solid #333;
    transition: transform 0.2s ease;
}
.user-card:hover {
    transform: translateY(-5px);
}

.user-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00bcd4;
}

.bg-role-admin {
    background-color: #d9534f;
}
.bg-role-moder {
    background-color: #f0ad4e;
}
.bg-role-helper {
    background-color: #5bc0de;
}

.members-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.member-card {
    background-color: #1f1f2e;
    border: 1px solid #2c2c3b;
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    transition: transform 0.3s ease;
    width: calc(25% - 20px); /* 4 в ряд */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    min-width: 240px;
}

@media (max-width: 1200px) {
    .member-card { width: calc(33.333% - 20px); } /* 3 в ряд */
}
@media (max-width: 992px) {
    .member-card { width: calc(50% - 20px); } /* 2 в ряд */
}
@media (max-width: 576px) {
    .member-card { width: 100%; } /* 1 в ряд */
}

.member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.2);
}

.member-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00bcd4;
}

.gear-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    padding: 3px 6px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #ccc;
    transition: all 0.2s ease-in-out;
}
.gear-btn:hover {
    background-color: #00bcd4;
    color: #000;
    border-color: #00bcd4;
}

/* Модальное окно роли */
.modal-content {
    background-color: #1e1e2e;
    color: #fff;
    border: 1px solid #00bcd4;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.modal-header, .modal-footer {
    border-color: #2c2c3b;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #00bcd4;
}

.form-select {
    background-color: #2a2a3b;
    color: #fff;
    border: 1px solid #555;
}

.form-select option {
    background-color: #2a2a3b;
    color: #fff;
}

.btn-close {
    filter: invert(1);
}

.modal-footer .btn {
    background-color: #00bcd4;
    color: white;
    border: none;
    transition: background 0.3s ease;
}

.modal-footer .btn:hover {
    background-color: #0097a7;
}

.bg-space {
    background: url('/assets/bg/space.jpg') no-repeat center center fixed;
    background-size: cover;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.member-card {
    background: #1c1c2e;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #2e2e3e;
    color: #fff;
    position: relative;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.member-avatar {
    width: 55p


.role-modal-content {
  background: linear-gradient(to bottom right, #1a1a2f, #232334);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  border: 1px solid #00bcd4;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.text-glow {
  color: #00e5ff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

.select-role {
  background-color: #2a2a3b;
  color: white;
  border: 1px solid #444;
  padding: 10px;
  border-radius: 6px;
  transition: border 0.3s ease;
}

.select-role:focus {
  border-color: #00bcd4;
  outline: none;
  background-color: #2e2e40;
}

.modal-footer .btn-cosmic {
  margin-top: 0;
}

/* Радужная рамка для роли */

@keyframes rainbow-text {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.role-label {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px; /* скругление, как ты просил */
  text-align: center;
  margin-top: 5px;
  white-space: nowrap;
}

.bg-role-moder {
  background-color: #f0ad4e !important;
  color: #000 !important;
}

.bg-role-helper {
  background-color: #5bc0de !important;
  color: #000 !important;
}

.status-label {
  font-size: 13px;
  opacity: 0.8;
}

.current-page {
  font-size: 13px;
  color: #ccc;
  margin-top: 6px;
  word-break: break-all;
}

.current-page i {
  margin-right: 6px;
  color: #00bcd4;
}

/* Основной контейнер */
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

/* Форма (блок карточки) */
.form-box {
    background: #1e1e2a;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.2);
    border-left: 4px solid #00ccff;
    color: #ffffff;
}

/* Заголовок формы */
.form-box h2 {
    color: #00ccff;
    text-align: center;
    margin-bottom: 25px;
}

/* Подписи */
.form-box label {
    display: block;
    margin-top: 15px;
    color: #bbb;
}

/* Поля ввода */
.form-box input,
.form-box select,
.form-box textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: none;
    border-radius: 6px;
    background: #2a2a3c;
    color: #fff;
    font-size: 14px;
    outline: none;
}

/* Кнопка */
.button-primary {
    margin-top: 20px;
    width: 100%;
    background: linear-gradient(to right, #00c8ff, #007799);
    color: white;
    font-weight: bold;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.button-primary:hover {
    background: linear-gradient(to right, #00e0ff, #0099cc);
}

/* Успешное сообщение */
.success-message {
    background: #1a331a;
    color: #79e379;
    padding: 12px 15px;
    border-left: 4px solid #28a745;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

/* Общие стили */
body {
  background-color: #0d1117;
  color: #c9d1d9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Карточка */
.card.bg-dark {
  background-color: #161b22 !important;
  border: 1px solid #30363d;
  border-radius: 12px;
}

/* Заголовок карточки */
.card-header {
  background-color: #21262d !important;
  border-bottom: 1px solid #30363d;
  font-size: 1.25rem;
  font-weight: bold;
}

/* Таблица */
.table thead.thead-dark th {
  background-color: #21262d;
  border-color: #30363d;
  color: #f0f6fc;
}

.table td, .table th {
  border-color: #30363d;
  vertical-align: middle;
}

/* Кнопки */
.btn-success {
  background-color: #238636;
  border-color: #238636;
}

.btn-success:hover {
  background-color: #2ea043;
  border-color: #2ea043;
}

.btn-warning {
  background-color: #d29922;
  border-color: #d29922;
  color: #fff;
}

.btn-warning:hover {
  background-color: #e3b341;
  border-color: #e3b341;
}

.btn-danger {
  background-color: #da3633;
  border-color: #da3633;
}

.btn-danger:hover {
  background-color: #f85149;
  border-color: #f85149;
}

/* Аватар */
.table img.rounded-circle {
  border: 2px solid #30363d;
}

/* Бейджи */
.badge-success {
  background-color: #238636;
  color: #fff;
}

.badge-danger {
  background-color: #da3633;
  color: #fff;
}

/* Модальные окна */
.modal-content {
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 10px;
}

.modal-header,
.modal-footer {
  border-color: #30363d;
}

.modal-header .close {
  color: #fff;
}

/* Формы */
.form-control {
  background-color: #0d1117;
  border: 1px solid #30363d;
  color: #c9d1d9;
}

.form-control:focus {
  background-color: #161b22;
  color: #f0f6fc;
  border-color: #58a6ff;
  box-shadow: 0 0 0 0.2rem rgba(56,139,253,.25);
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(120deg, #0f0c29, #302b63, #24243e);
    background-size: 400% 400%;
    animation: spaceMove 30s ease infinite;
    color: #fff;
}

@keyframes spaceMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cosmic-wrapper {
    padding: 60px 20px;
}

.cosmic-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cosmic-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    color: #84d0ff;
}

.cosmic-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cosmic-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 0 12px rgba(0, 128, 255, 0.2);
    transition: transform 0.2s ease;
}

.cosmic-card:hover {
    transform: translateY(-5px);
}

.cosmic-card h4 {
    color: #9ecbff;
}

.cosmic-card a {
    color: #5daeff;
    word-break: break-word;
}

.cosmic-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.cosmic-btn {
    padding: 5px 10px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: 0.3s;
    cursor: pointer;
}

.cosmic-btn.blue { background-color: #3498db; color: white; }
.cosmic-btn.red { background-color: #e74c3c; color: white; }
.cosmic-btn.orange { background-color: #f39c12; color: white; }

.cosmic-btn:hover {
    opacity: 0.85;
}

.cosmic-modal {
    background-color: #1f1f2e;
    color: white;
    border: none;
    border-radius: 10px;
}

.cosmic-input {
    background: #2c2c3c;
    color: white;
    border: 1px solid #3a3a4d;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 6px;
}

body {
  background: url('/img/space-bg.gif') center center no-repeat;
  background-size: cover;
  font-family: 'Nunito', sans-serif;
  color: #fff;
}

.container h1,
.container h2,
.container h3 {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.bg-panel {
  background-color: rgba(20, 20, 30, 0.8);
  border: 1px solid #333;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px #000;
}

.form-control.promo-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
  outline: none;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

.form-control.promo-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-control.promo-input:focus {
  border-color: #5867dd;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px #5867dd, 0 0 20px #5867dd;
}

.input-group {
  display: flex;
  align-items: stretch;
  gap: 8px;
  max-width: 400px;
}

.form-control.promo-input {
  flex: 1;
}

.btn-cosmic {
  padding: 10px 16px;
  background: linear-gradient(90deg, #5867dd, #5f9eff);
  color: #fff;
  border: none;
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 0 10px #5867dd;
}

.btn-cosmic:hover {
  background: linear-gradient(90deg, #778bff, #4ecbff);
  box-shadow: 0 0 15px #5f9eff, 0 0 30px #5f9eff;
}




