/* =========================================================
   OZ STORE FULL STYLE.CSS
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #090d14;
  color: #e5e7eb;
  font-family: Arial, sans-serif;
  animation: pageFade 0.7s ease;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================================================
   DOCS LAYOUT
   ========================================================= */

body.docs-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  min-height: 100vh;
}

/* =========================================================
   SIDEBAR
   ========================================================= */

.sidebar {
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #0b111c;
  border-right: 1px solid #1f2937;
  animation: sidebarIn 0.7s ease;
}

@keyframes sidebarIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 35px;
}

.logo {
  width: 170px;
  max-height: 90px;
  object-fit: contain;
  display: block;
}

.sidebar p {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 24px 0 10px;
}

.side-link,
.sidebar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #94a3b8;
  text-decoration: none;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 6px;
  transition: 0.2s;
}

.side-link:hover,
.sidebar a:hover,
.sidebar a.active {
  background: #2563eb22;
  color: white;
}

.disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.sidebar-bottom {
  margin-top: auto;
}

.admin-link {
  background: #2563eb22;
  color: white !important;
}

/* =========================================================
   DISCORD SUPPORT BUTTON
   ========================================================= */

.discord-support-btn {
  position: relative;
  height: 46px;
  display: flex !important;
  align-items: center;
  justify-content: center !important;
  gap: 8px;
  padding: 0 16px;
  background: rgba(88,101,242,0.12);
  border: 1px solid rgba(88,101,242,0.25);
  border-radius: 14px;
  color: #c7d2fe !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
  transition: 0.22s;
  margin-bottom: 12px;
}

.discord-support-btn::before {
  content: "💬";
  font-size: 15px;
}

.discord-support-btn:hover {
  transform: translateY(-2px);
  background: rgba(88,101,242,0.2);
  border-color: rgba(88,101,242,0.45);
  box-shadow: 0 0 25px rgba(88,101,242,0.18);
  color: white !important;
}

/* =========================================================
   CONTENT / INDEX
   ========================================================= */

.content {
  width: 100%;
  max-width: 1250px;
  padding: 60px;
}

.index-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 45px;
  animation: slideTop 0.6s ease;
}

@keyframes slideTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-block;
  color: #60a5fa;
  font-weight: 900;
  margin-bottom: 14px;
}

h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

h3 {
  color: #dbeafe;
}

.desc {
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 45px;
}

/* =========================================================
   BELL / NOTIFICATIONS
   ========================================================= */

.bell-btn {
  position: relative;
  min-width: 46px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid #1f2937;
  border-radius: 14px;
  color: white;
  font-size: 17px;
  cursor: pointer;
  transition: 0.22s;
  backdrop-filter: blur(10px);
}

.bell-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(59,130,246,0.4);
  background: rgba(59,130,246,0.12);
  box-shadow: 0 0 20px rgba(37,99,235,0.15);
}

.bell-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 999px;
  box-shadow: 0 0 12px #22c55e;
  animation: pulseBell 1.4s infinite;
}

@keyframes pulseBell {
  0% {
    box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(34,197,94,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34,197,94,0);
  }
}

.bell-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ef4444;
  border: 2px solid #090d14;
  border-radius: 999px;
  color: white;
  font-size: 11px;
  font-weight: 900;
}

.release-popup {
  display: none;
  position: fixed;
  top: 95px;
  left: 28px;
  z-index: 9999;
  width: 420px;
  max-width: calc(100vw - 40px);
  padding: 18px;
  background: rgba(11,17,28,0.92);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow:
    0 25px 80px rgba(0,0,0,0.45),
    0 0 35px rgba(37,99,235,0.12);
}

.release-popup.open {
  display: block;
  animation: popupIn 0.25s ease;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.release-popup-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.release-popup-head strong {
  font-size: 18px;
  color: white;
}

.release-popup-head button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: linear-gradient(135deg,#1e293b,#0f172a);
  border: 1px solid #1f2937;
  border-radius: 12px;
  color: white;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s;
}

.release-popup-head button:hover {
  background: #2563eb;
  border-color: #3b82f6;
  transform: rotate(90deg);
}

.release-item {
  position: relative;
  display: flex;
  padding: 16px 48px 16px 16px;
  background: linear-gradient(135deg,#111827,#070b13);
  border: 1px solid #1f2937;
  border-radius: 18px;
  margin-bottom: 12px;
  transition: 0.25s;
}

.release-item:hover {
  transform: translateY(-2px);
  border-color: #3b82f6;
  box-shadow: 0 0 25px rgba(37,99,235,0.18);
}

.release-item a {
  width: 100%;
  display: block;
  text-decoration: none;
}

.release-item strong {
  display: block;
  margin: 8px 0 4px;
  color: white;
  font-size: 15px;
}

.release-item p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
}

.notify-type {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.release-type {
  background: #22c55e22;
  border: 1px solid #22c55e55;
  color: #86efac;
}

.changelog-type {
  background: #2563eb22;
  border: 1px solid #3b82f655;
  color: #93c5fd;
}

.dismiss-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: #94a3b8;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  transition: 0.2s;
}

.release-item:hover .dismiss-btn {
  opacity: 1;
}

.dismiss-btn:hover {
  background: #ef4444;
  color: white;
  transform: rotate(90deg);
}

.empty-release {
  color: #94a3b8;
  padding: 12px;
}

/* =========================================================
   DOC CARDS
   ========================================================= */

.grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 22px;
}

.doc-card {
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: white;
  background: #0b111c;
  border: 1px solid #1f2937;
  border-radius: 22px;
  opacity: 0;
  animation: cardIn 0.7s ease forwards;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.doc-card:nth-child(1){animation-delay:0.1s;}
.doc-card:nth-child(2){animation-delay:0.2s;}
.doc-card:nth-child(3){animation-delay:0.3s;}
.doc-card:nth-child(4){animation-delay:0.4s;}
.doc-card:nth-child(5){animation-delay:0.5s;}
.doc-card:nth-child(6){animation-delay:0.6s;}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.doc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 20px 50px rgba(37,99,235,0.18);
}

.doc-card img,
.image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #1f2937;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.doc-card:hover img {
  transform: scale(1.03);
  filter: brightness(1.08) saturate(1.1);
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020617;
  color: #64748b;
}

.card-content {
  padding: 24px;
}

.card-content h2 {
  font-size: 24px;
  margin: 14px 0 10px;
}

.card-content p {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 14px;
}

.card-content small {
  color: #64748b;
}

.disabled-card {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

/* =========================================================
   STATUS
   ========================================================= */

.status,
.side-link b {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.release {
  background: #22c55e22;
  color: #86efac;
  border: 1px solid #22c55e55;
}

.beta {
  background: #2563eb22;
  color: #93c5fd;
  border: 1px solid #3b82f655;
}

.wip {
  background: #f59e0b22;
  color: #fcd34d;
  border: 1px solid #f59e0b55;
}

.not_released {
  background: #ef444422;
  color: #fca5a5;
  border: 1px solid #ef444455;
}

/* =========================================================
   SCRIPT PAGE
   ========================================================= */

.update-alert {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #2563eb33, #22c55e22);
  border: 1px solid #3b82f655;
  padding: 18px 20px;
  border-radius: 18px;
  margin-bottom: 35px;
}

.update-alert strong {
  color: white;
}

.update-alert span {
  color: #94a3b8;
}

section {
  border-bottom: 1px solid #1f2937;
  margin-bottom: 40px;
  padding-bottom: 40px;
}

section p,
section li {
  color: #a8b3c5;
  line-height: 1.8;
}

pre {
  background: #020617;
  border: 1px solid #1f2937;
  padding: 20px;
  border-radius: 16px;
  overflow-x: auto;
  margin-top: 18px;
}

code {
  color: #bfdbfe;
}

.changelog-box {
  background: #0b111c;
  border: 1px solid #1f2937;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 18px;
}

.changelog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.version-badge {
  background: #2563eb22;
  border: 1px solid #3b82f655;
  color: #93c5fd;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

/* =========================================================
   FORMS
   ========================================================= */

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  background: #020617;
  border: 1px solid #1f2937;
  border-radius: 12px;
  color: white;
  font-size: 15px;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #3b82f6;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  border: none;
}

button,
.logout-btn,
.delete-btn {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 12px;
  color: white;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}

button {
  background: #2563eb;
}

button:hover {
  background: #3b82f6;
}

.logout-btn {
  background: #ef444422;
  border: 1px solid #ef444455;
  color: #fca5a5;
}

.delete-btn {
  background: #991b1b22;
  border: 1px solid #ef444455;
  color: #fca5a5;
}

/* =========================================================
   LOGIN PAGE
   ========================================================= */

body.admin-body:has(.login-box) {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(88,101,242,0.25), transparent 35%),
    radial-gradient(circle at bottom left, rgba(37,99,235,0.18), transparent 35%),
    #090d14;
}

.login-box {
  width: 100%;
  max-width: 430px;
  padding: 34px;
  background: rgba(11,17,28,0.92);
  border: 1px solid #1f2937;
  border-radius: 26px;
  backdrop-filter: blur(18px);
  box-shadow:
    0 25px 80px rgba(0,0,0,0.45),
    0 0 35px rgba(88,101,242,0.12);
  animation: loginIn 0.5s ease;
}

@keyframes loginIn {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.login-box h1 {
  font-size: 38px;
  margin-bottom: 22px;
  text-align: center;
}

.login-box input {
  margin-bottom: 14px;
}

.discord-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 16px;
  padding: 15px 22px;
  background: linear-gradient(135deg,#5865f2,#4752c4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  overflow: hidden;
  box-shadow:
    0 0 30px rgba(88,101,242,0.35),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition: 0.25s;
}

.discord-btn::before {
  content: "💬";
}

.discord-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 45px rgba(88,101,242,0.55),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.error {
  color: #fca5a5;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 800;
}

/* =========================================================
   ADMIN / DASHBOARD
   ========================================================= */

.admin-body {
  display: block;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,0.25), transparent 30%),
    #090d14;
}

.admin-page {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 50px 40px;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: start;
}

.dashboard-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dashboard-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dashboard-header {
  position: relative;
  padding: 38px;
  background:
    linear-gradient(
      135deg,
      rgba(37,99,235,0.22),
      rgba(11,17,28,0.95)
    );
  border: 1px solid #1f2937;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.dashboard-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(59,130,246,0.18),
      transparent 45%
    );
}

.dashboard-header > * {
  position: relative;
}

.dashboard-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #2563eb22;
  border: 1px solid #3b82f655;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-header h1 {
  font-size: 64px;
  line-height: 1;
  margin: 18px 0;
  letter-spacing: -3px;
}

.dashboard-header p {
  color: #94a3b8;
  line-height: 1.7;
  font-size: 17px;
  max-width: 320px;
}

.header-right {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.discord-avatar {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  object-fit: cover;
  border: 2px solid #2563eb;
  box-shadow: 0 0 30px rgba(37,99,235,0.35);
}

.ticket-btn {
  background: #2563eb22;
  border: 1px solid #3b82f655;
  color: #93c5fd;
}

.ticket-btn:hover {
  background: #2563eb33;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}

.stat-card {
  padding: 24px;
  background: linear-gradient(135deg,#0b111c,#070b13);
  border: 1px solid #1f2937;
  border-radius: 24px;
  transition: 0.22s;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 15px 35px rgba(37,99,235,0.12);
}

.stat-card span {
  color: #94a3b8;
  font-size: 14px;
}

.stat-card strong {
  display: block;
  margin-top: 12px;
  font-size: 48px;
  color: white;
}

.panel {
  background: rgba(11,17,28,0.94);
  border: 1px solid #1f2937;
  border-radius: 30px;
  padding: 28px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.create-form {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: #dbeafe;
  font-size: 13px;
  font-weight: 900;
}

.script-admin-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 22px;
}

.script-admin-card {
  background: #070b13;
  border: 1px solid #1f2937;
  border-radius: 24px;
  padding: 22px;
}

.script-card-top {
  position: relative;
  margin-bottom: 18px;
}

.script-card-top img,
.admin-image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #1f2937;
  background: #020617;
}

.admin-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

.script-card-top .status {
  position: absolute;
  top: 14px;
  left: 14px;
}

.two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mini-changelog {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #1f2937;
}

.mini-changelog h3 {
  margin-bottom: 16px;
}

.admin-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.editor-box {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    margin-top 0.3s ease;
}

.editor-box.open {
  max-height: 5000px;
  opacity: 1;
  margin-top: 24px;
}

.edit-toggle-btn {
  width: 100%;
  justify-content: center;
}

.script-preview h3 {
  font-size: 28px;
  margin: 18px 0 8px;
}

.script-preview p {
  color: #94a3b8;
  margin-bottom: 18px;
}

/* =========================================================
   TICKET SYSTEM
   ========================================================= */

.ticket-box textarea {
  min-height: 160px;
}

.ticket-view {
  width: 100%;
  max-width: 850px;
  margin: 70px auto;
  padding: 30px;
}

.ticket-header,
.ticket-message {
  background: rgba(11,17,28,0.92);
  border: 1px solid #1f2937;
  border-radius: 22px;
  padding: 26px;
  margin-bottom: 22px;
}

.ticket-header h1 {
  font-size: 42px;
  margin: 14px 0;
}

.ticket-header p,
.ticket-message p {
  color: #94a3b8;
  line-height: 1.8;
}

.ticket-message strong {
  color: white;
  display: block;
  margin-bottom: 10px;
}

.admin-reply {
  border-color: #3b82f655;
  background: linear-gradient(135deg,#2563eb22,#070b13);
}

.ticket-admin-list {
  display: grid;
  gap: 18px;
}

.ticket-admin-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg,#0b111c,#070b13);
  border: 1px solid #1f2937;
  border-radius: 24px;
  text-decoration: none;
  transition: 0.25s;
}

.ticket-admin-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59,130,246,0.45);
  box-shadow: 0 18px 45px rgba(37,99,235,0.16);
}

.ticket-admin-card h3 {
  margin: 14px 0 8px;
  color: white;
  font-size: 24px;
}

.ticket-admin-card p,
.ticket-date {
  color: #94a3b8;
  font-size: 14px;
}

.ticket-status {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-status.open {
  background: #22c55e22;
  border: 1px solid #22c55e55;
  color: #86efac;
}

.ticket-status.progress {
  background: #f59e0b22;
  border: 1px solid #f59e0b55;
  color: #fcd34d;
}

.ticket-status.closed {
  background: #ef444422;
  border: 1px solid #ef444455;
  color: #fca5a5;
}

.ticket-reply-form {
  display: grid;
  gap: 16px;
}

/* =========================================================
   TOAST
   ========================================================= */

.toast-notify {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  padding: 16px 22px;
  border-radius: 16px;
  font-weight: 900;
  color: white;
  background: #0b111c;
  border: 1px solid #1f2937;
  box-shadow: 0 0 40px rgba(0,0,0,0.35);
  animation: toastIn 0.35s ease, toastOut 0.35s ease 3s forwards;
}

.toast-notify.success {
  border-color: #22c55e55;
  background: linear-gradient(135deg,#22c55e33,#0b111c);
  color: #86efac;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateY(-12px) scale(0.96);
    pointer-events: none;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1300px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-header h1 {
    font-size: 46px;
  }
}

@media (max-width: 1000px) {
  body.docs-layout {
    display: block;
  }

  .sidebar {
    height: auto;
    position: relative;
  }

  .content,
  .admin-page {
    padding: 30px 20px;
  }

  .grid,
  .script-admin-grid,
  .stats-grid,
  .create-form,
  .two-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 40px;
  }

  .release-popup {
    top: 90px;
    left: 20px;
    right: 20px;
    width: auto;
  }

  .ticket-admin-card {
    grid-template-columns: 1fr;
  }
}