/* ===========================================
   ARKKANOX - Theme CSS
   Pure vanilla CSS - No frameworks
   =========================================== */

:root {
  /* Font */
  --font-main: 'Satoshi', sans-serif;

  /* Backgrounds */
  --bg: oklch(18.22% 0 89.88);
  --surface: oklch(28% 0 255);

  /* Text */
  --text: oklch(97.91% 0 89.88);
  --text-muted: rgba(255, 255, 255, 0.7);

  /* Borders */
  --border: oklch(27% 0.041 260.031);

  /* Accents */
  --orange: oklch(75% 0.183 55.934);
  --cyan: oklch(77% 0.152 181.912);
  --purple: oklch(71% 0.203 305.504);
  --raspberry: oklch(65% 0.23 350);

  /* States */
  --error: oklch(57.889% 0.23756 29.223);
  --success: oklch(60% 0.118 184.704);
}

/* ===========================================
   BASE & RESET
   =========================================== */

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--orange);
}

a:hover {
  color: var(--text);
}

/* ===========================================
   LAYOUT
   =========================================== */
.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

.hidden {
  display: none !important;
}

.content-wrapper {
  width: 100%;
  padding: 0 0.7rem;
}

/* ===========================================
   TYPOGRAPHY
   =========================================== */

.title {
  font-size: 2rem;
  font-weight: 700;
}

.tagline {
  font-size: 0.975rem;
  color: var(--text-muted);
}

.subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.section-title {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.bio {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.5;
}

.text-muted {
  color: var(--text-muted);
}

.text-gold {
  color: var(--orange);
}

.text-error {
  color: var(--error);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1rem;
}

.text-success {
  color: var(--success);
  font-size: 0.875rem;
  text-align: center;
}

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

/* ===========================================
   COMPONENTS - Buttons
   =========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.btn-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

.btn-primary,
.btn-accent {
  background: var(--orange);
  color: #000;
  font-weight: bold;
}

.btn-primary:hover,
.btn-accent:hover {
  filter: brightness(1.1);
}

.btn-neutral {
  background: var(--border);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-neutral:hover {
  background: oklch(35% 0.04 260);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0.5rem;
}

.btn-link:hover {
  color: var(--text);
}

/* ===========================================
   COMPONENTS - Inputs
   =========================================== */

.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--bg);
  font-family: inherit;
}

.input:focus {
  outline: none;
  border-color: var(--cyan);
}

.input::placeholder {
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1rem;
}

/* ===========================================
   COMPONENTS - Modal
   =========================================== */

dialog.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: none;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

dialog.modal[open] {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 520px;
  width: calc(100vw - 1rem);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.modal-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.modal-backdrop button {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* ===========================================
   COMPONENTS - Loading
   =========================================== */

.loading {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.loading-sm {
  width: 0.875rem;
  height: 0.875rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===========================================
   SECTION - Profile Header
   =========================================== */

.profile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.profile-avatar-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  animation: pulse-border 3s ease-in-out infinite;
}

.profile-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  animation: pulse-zoom 3s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 4px var(--border); }
  50% { box-shadow: 0 0 0 4px var(--text); }
}

@keyframes pulse-zoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.profile-info {
  flex: 1;
}

/* ===========================================
   SECTION - Oracles Grid
   =========================================== */

.oracles-section {
  margin-bottom: 2rem;
}

.oracles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
  margin-top: 1rem;
}

.oracle-card {
  cursor: pointer;
  transition: transform 0.15s ease;
}

.oracle-card:active {
  transform: scale(0.97);
}

.oracle-card.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.oracle-thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--surface);
}

.oracle-name {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.oracle-overlay {
  position: relative;
}

/* ===========================================
   SECTION - Demo Feed
   =========================================== */

.demo-section {
  margin-bottom: 2rem;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}

.demo-placeholder {
  aspect-ratio: 9/16;
  background: var(--surface);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ===========================================
   APP - Navbar
   =========================================== */

.app-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #000000;
}

.nav-logo img {
  height: 2rem;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.app-navbar svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--text);
}

.nav-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-icon-link:hover svg {
  stroke: var(--cyan);
}

.nav-account {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.5rem;
}

.nav-account:hover {
  color: var(--text);
}

.nav-account:hover svg {
  stroke: var(--text);
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-icon-btn:hover svg {
  stroke: var(--cyan);
}

/* ===========================================
   APP - Drawer
   =========================================== */

.app-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}

.app-drawer.open {
  visibility: visible;
  pointer-events: auto;
}

.drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.app-drawer.open .drawer-overlay {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--surface);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.app-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.drawer-logo {
  height: 40px;
  width: auto;
}

.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.drawer-close svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--text);
}

.drawer-close:hover svg {
  stroke: var(--cyan);
}

/* ===========================================
   APP - Menu
   =========================================== */

.menu-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list a {
  display: block;
  padding: 0.35rem 0;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.menu-list a:hover {
  color: var(--cyan);
}

.menu-section-disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ===========================================
   PAGES - Legal (Terms, Privacy)
   =========================================== */

.legal-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.legal-container .content-wrapper {
  padding: 2rem 1rem;
}

.legal-container h1 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.legal-container h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.legal-container h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.legal-container p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.legal-container ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-container li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--cyan);
  text-decoration: none;
}

.back-link:hover {
  color: var(--text);
}

.last-update {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

/* ===========================================
   SECTION - Testimonials Carousel
   =========================================== */

.testimonials-section {
  margin-bottom: 2rem;
}

.carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 90%;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  display: block;
}

/* ===========================================
   STORE BADGES
   =========================================== */

.store-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.store-badge {
  display: block;
  transition: opacity 0.2s, transform 0.2s;
}

.store-badge:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

.store-badge img {
  height: 44px;
  width: auto;
}

.coming-soon-msg {
  width: 100%;
  text-align: center;
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   FOOTER
   =========================================== */

.site-footer {
  text-align: center;
  padding: 2rem 0;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: normal;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-separator {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* ===========================================
   UTILITIES
   =========================================== */

.w-full { width: 100%; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mt-3 { margin-top: 0.75rem; }

/* ===========================================
   CREDITS - Icon & Display
   =========================================== */

.credit-icon {
  color: var(--orange);
  font-size: 1.1em;
}

/* ===========================================
   PRICING - Subscription Card
   =========================================== */

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.pricing-featured {
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  text-transform: uppercase;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color:#fff;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--success);
  mask-image: url('https://arkkanox.com/img/check.svg');
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url('https://arkkanox.com/img/check.svg');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}

/* ===========================================
   PACKS - Credit Packs Grid
   =========================================== */

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.pack-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.pack-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.pack-card.loading {
  opacity: 0.5;
  pointer-events: none;
}

.pack-popular {
  border-color: var(--orange);
}

.pack-badge {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #000;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 0.5rem;
  white-space: nowrap;
}

.pack-credits {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
}

.pack-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pack-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--orange);
}

/* ===========================================
   SHARE - Input wrapper
   =========================================== */

.share-input-wrapper {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.share-input-wrapper .input {
  flex: 1;
}

/* ===========================================
   PROFILE - Birth date selects
   =========================================== */

.birth-date-selects {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.birth-date-selects .select {
  width: 100%;
}

/* All selects have same height as inputs */
.select {
  height: 2.2rem;
  padding: 0 0.75rem;
}

.form-label {
  display: block;
  font-size: 0.975rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* ===========================================
   DRAWER - Logout link
   =========================================== */

.logout-link {
  text-decoration: underline !important;
  color: var(--text-muted) !important;
}

.logout-link:hover {
  color: var(--error) !important;
}

/* ===========================================
   ORACLE PAGES
   =========================================== */

.oracle-container .content-wrapper {
  padding: 0;
}

.oracle-container .app-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.oracle-video-wrapper {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oracle-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .oracle-video-wrapper video {
    object-fit: contain;
  }
}

.oracle-video-wrapper audio {
  display: none;
}

/* Speaking state - pulsing glow */
.oracle-video-wrapper.speaking {
  animation: oracle-pulse 1.5s ease-in-out infinite;
}

@keyframes oracle-pulse {
  0%, 100% { box-shadow: inset 0 0 30px rgba(255, 165, 0, 0.3); }
  50% { box-shadow: inset 0 0 60px rgba(255, 165, 0, 0.5); }
}

.oracle-input-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0));
  background: rgba(0, 0, 0, 0.8);
}

.oracle-input-wrapper {
  display: flex;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto;
}

.oracle-input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: none;
  border-radius: 0.75rem;
  background: #fff;
  color: #000;
  font-family: inherit;
  font-size: 1rem;
}

.oracle-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--cyan);
}

.oracle-input::placeholder {
  color: #888;
}

.oracle-input:disabled {
  background: rgba(255, 255, 255, 0.5);
}

.oracle-send-btn {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.oracle-send-btn:hover:not(:disabled) {
  background: var(--surface);
}

.oracle-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.oracle-send-btn .send-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Oracle Loading */
.oracle-loading-wrapper {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.oracle-loading-wrapper.hidden {
  display: none;
}

.oracle-loading-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--cyan) 50%, var(--orange) 100%);
  background-size: 200% 100%;
  animation: oracle-loading 1.5s ease-in-out infinite;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

@keyframes oracle-loading {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.oracle-loading-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Welcome Overlay */
.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.welcome-overlay.hidden {
  display: none;
}

.welcome-content {
  padding: 2rem;
}

.welcome-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.welcome-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.welcome-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top:1rem;
}

.welcome-content .btn {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

.welcome-logo {
  max-width: 300px;
  height: auto;
}

/* ===========================================
   ACCOUNT PAGE
   =========================================== */

.account-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.account-container h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.credits-display {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.account-container h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.account-section {
  margin-bottom: 2rem;
}

.account-section .btn {
  display: block;
  margin: 1.5rem auto 0;
}

.section-message {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

.section-message.text-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.section-message.text-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.danger-link {
  display: block;
  color: var(--error);
  margin: 1rem 0;
  text-decoration: none;
  transition: opacity 0.2s;
}

.danger-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.modal-text {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.btn-error {
  background: var(--error);
  color: #fff;
  border: none;
}

.btn-error:hover {
  opacity: 0.9;
}
