html {
  background: #020817;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 75% 8%, rgba(14, 231, 242, 0.16), transparent 30rem),
    radial-gradient(circle at 14% 18%, rgba(56, 189, 248, 0.13), transparent 26rem),
    linear-gradient(135deg, #020817 0%, #06172a 48%, #020817 100%);
  color: #dff7ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14, 231, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 231, 242, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto 12% -18rem 12%;
  z-index: -1;
  height: 34rem;
  border-radius: 999px;
  background: rgba(14, 231, 242, 0.08);
  filter: blur(70px);
  pointer-events: none;
}

a {
  color: #7dd3fc;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

a:hover {
  color: #a5f3fc;
  text-decoration: none;
}

#star-sky {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.28;
  background: transparent;
}

[v-cloak] {
  display: none;
}

main {
  position: relative;
  z-index: 1;
}

.container,
.container-fluid {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
  padding-inline: 0;
}

.container-fluid {
  width: min(100% - 1.25rem, 1280px);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -0.75rem;
}

[class*="col-"] {
  width: 100%;
  padding-inline: 0.75rem;
}

.col-12 { width: 100%; }
.col-11 { width: 91.666667%; }
.col-10 { width: 83.333333%; }
.col-8 { width: 66.666667%; }
.col-6 { width: 50%; }
.col-auto { width: auto; }

@media (min-width: 768px) {
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333333%; }
  .col-md-6 { width: 50%; }
  .col-md-7 { width: 58.333333%; }
  .col-md-8 { width: 66.666667%; }
  .col-md-10 { width: 83.333333%; }
  .d-md-block { display: block !important; }
  .d-md-none { display: none !important; }
  .mt-md-0 { margin-top: 0 !important; }
  .text-md-center { text-align: center !important; }
}

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-items-center { align-items: center !important; }
.align-items-end { align-items: flex-end !important; }
.align-self-center { align-self: center !important; }
.align-self-end { align-self: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }
.justify-content-end { justify-content: flex-end !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.h-100vh { height: 100vh !important; }
.mt-auto { margin-top: auto !important; }

.fixed-top {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
}

.shadow,
.shadow-sm {
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.34) !important;
}

.border,
.border-bottom,
.border-right {
  border-color: rgba(125, 211, 252, 0.18) !important;
}

.border { border: 1px solid rgba(125, 211, 252, 0.18) !important; }
.border-bottom { border-bottom: 1px solid rgba(125, 211, 252, 0.18) !important; }
.border-right { border-right: 1px solid rgba(125, 211, 252, 0.18) !important; }

.rounded,
.rounded-bottom,
.radius10,
.card {
  border-radius: 1.1rem !important;
}

.rounded-circle {
  border-radius: 999px !important;
}

.bg-dark,
.bg-secondary,
.bg-white,
.bg-success,
.bg-wwwpublic,
.card {
  border: 1px solid rgba(125, 211, 252, 0.18) !important;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.88), rgba(8, 47, 73, 0.58)) !important;
  color: #e0f2fe !important;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.bg-success {
  border-color: rgba(45, 212, 191, 0.34) !important;
  background:
    linear-gradient(145deg, rgba(20, 184, 166, 0.28), rgba(15, 23, 42, 0.88)) !important;
}

.bg-wwwpublic {
  border-color: rgba(14, 231, 242, 0.4) !important;
  box-shadow: 0 0 38px rgba(14, 231, 242, 0.18), 0 18px 60px rgba(0, 0, 0, 0.34);
  background-color: yellow !important;
}

.text-dark,
.text-white,
.text-success,
.text-warning,
.text-danger,
.text-muted {
  color: #dff7ff !important;
}

.text-success,
a.text-success {
  color: #22d3ee !important;
}

.text-warning,
a.text-warning {
  color: #fde68a !important;
}

.text-danger {
  color: #fecdd3 !important;
}

.font-weight-bold,
.font-weight-bolder {
  font-weight: 800 !important;
}

.font-10 { font-size: 0.625rem !important; }
.font-12 { font-size: 0.75rem !important; }
.font-14 { font-size: 0.875rem !important; }
.font-16 { font-size: 1rem !important; }

.myunderborader {
  height: 1px;
  background: linear-gradient(90deg, rgba(14, 231, 242, 0.75), rgba(56, 189, 248, 0.12), transparent) !important;
}

.form-control,
.custom-select,
select,
textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="number"] {
  width: 100%;
  border: 1px solid rgba(125, 211, 252, 0.22) !important;
  border-radius: 1rem !important;
  background: rgba(15, 23, 42, 0.78) !important;
  color: #f8fafc !important;
  padding: 0.72rem 0.95rem !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-control-sm {
  min-height: 2.35rem;
  padding: 0.5rem 0.8rem !important;
}

.form-control:focus,
select:focus,
textarea:focus,
input:focus {
  border-color: rgba(165, 243, 252, 0.9) !important;
  background: rgba(15, 23, 42, 0.92) !important;
  box-shadow: 0 0 32px rgba(14, 231, 242, 0.16) !important;
}

.input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}

.input-group-text {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(125, 211, 252, 0.22);
  background: rgba(14, 165, 233, 0.14);
  color: #cffafe;
  padding: 0 0.85rem;
  border-radius: 1rem 0 0 1rem;
}

.input-group .form-control {
  border-radius: 0 !important;
}

.input-group-append .btn {
  border-radius: 0 999px 999px 0 !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid rgba(125, 211, 252, 0.24) !important;
  border-radius: 999px !important;
  background: rgba(14, 165, 233, 0.14) !important;
  color: #ecfeff !important;
  padding: 0.62rem 1rem !important;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none !important;
  box-shadow: 0 0 26px rgba(14, 231, 242, 0.1);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(165, 243, 252, 0.72) !important;
  background: rgba(14, 231, 242, 0.22) !important;
  color: #ffffff !important;
  box-shadow: 0 0 34px rgba(14, 231, 242, 0.2);
}

.btn-sm {
  padding: 0.45rem 0.8rem !important;
  font-size: 0.78rem !important;
}

.btn-lg {
  padding: 0.85rem 1.25rem !important;
  font-size: 1rem !important;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary,
.btn-success {
  background: #67e8f9 !important;
  color: #020817 !important;
  border-color: rgba(165, 243, 252, 0.9) !important;
}

.btn-warning {
  background: #fde68a !important;
  color: #172554 !important;
  border-color: rgba(253, 230, 138, 0.9) !important;
}

.btn-danger {
  background: rgba(251, 113, 133, 0.2) !important;
  color: #ffe4e6 !important;
  border-color: rgba(251, 113, 133, 0.62) !important;
}

.btn-light {
  background: rgba(248, 250, 252, 0.92) !important;
  color: #020817 !important;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(217, 70, 239, 0.38);
  background: rgba(217, 70, 239, 0.22);
  color: #fae8ff;
  padding: 0.3rem 0.72rem;
  font-size: 0.68rem;
  font-weight: 800;
}

.img-thumbnail {
  width: 100%;
  height: auto;
  border-radius: 0.9rem;
  border: 1px solid rgba(125, 211, 252, 0.18);
  background: rgba(15, 23, 42, 0.78);
  padding: 0.25rem;
}

.table {
  width: 100%;
  color: #dff7ff;
  border-collapse: collapse;
}

.table th,
.table td {
  border-bottom: 1px solid rgba(125, 211, 252, 0.16);
  padding: 0.85rem;
}

.modal-backdrop {
  background: rgba(2, 8, 23, 0.82) !important;
}

.modal-content {
  border: 1px solid rgba(125, 211, 252, 0.24) !important;
  border-radius: 1.4rem !important;
  background: #020817 !important;
  color: #dff7ff !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.modal-header,
.modal-footer {
  border-color: rgba(125, 211, 252, 0.16) !important;
}

.close {
  color: #dff7ff !important;
  opacity: 0.9;
}

.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-4 { padding: 1rem !important; }
.p-5 { padding: 1.25rem !important; }
.px-2 { padding-inline: 0.5rem !important; }
.px-3 { padding-inline: 0.75rem !important; }
.px-4 { padding-inline: 1rem !important; }
.py-2 { padding-block: 0.5rem !important; }
.py-3 { padding-block: 0.75rem !important; }
.py-4 { padding-block: 1rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-4 { padding-top: 1rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 0.75rem !important; }
.pb-4 { padding-bottom: 1rem !important; }
.pb-5 { padding-bottom: 1.25rem !important; }
.pr-2 { padding-right: 0.5rem !important; }
.pr-3 { padding-right: 0.75rem !important; }

.m-0 { margin: 0 !important; }
.m-2 { margin: 0.5rem !important; }
.mx-1 { margin-inline: 0.25rem !important; }
.mx-3 { margin-inline: 0.75rem !important; }
.my-1 { margin-block: 0.25rem !important; }
.my-2 { margin-block: 0.5rem !important; }
.my-5 { margin-block: 1.25rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-5 { margin-top: 1.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 0.75rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-5 { margin-right: 1.25rem !important; }

.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

.order-0 { order: 0 !important; }
.order-1 { order: 1 !important; }
.order-2 { order: 2 !important; }

@media (min-width: 768px) {
  .flex-md-row { flex-direction: row !important; }
  .order-md-0 { order: 0 !important; }
  .order-md-1 { order: 1 !important; }
  .d-md-block { display: block !important; }
  .d-md-none { display: none !important; }
}

.mouse-cursor {
  cursor: pointer;
}

.fade-panel {
  animation: VibeCodingFade 0.55s ease both;
}

.bc-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(125, 211, 252, 0.18);
  background: rgba(2, 8, 23, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.bc-nav__brand {
  display: inline-flex;
  align-items: center;
  min-width: 9rem;
}

.bc-nav__brand img {
  width: auto;
  height: 2.1rem;
  filter: drop-shadow(0 0 18px rgba(14, 231, 242, 0.34));
}

.bc-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 800;
}

.bc-nav__links a {
  color: #cbd5e1;
}

.bc-nav__links a:hover {
  color: #a5f3fc;
}

.bc-nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}

.bc-nav__ghost,
.bc-nav__login,
.bc-nav__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 211, 252, 0.26);
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  color: #ecfeff;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.bc-nav__login {
  background: rgba(103, 232, 249, 0.16);
}

.bc-nav__ghost:hover,
.bc-nav__login:hover,
.bc-nav__menu:hover {
  transform: translateY(-1px);
  border-color: rgba(165, 243, 252, 0.7);
  background: rgba(14, 231, 242, 0.2);
}

.bc-nav__menu {
  display: none;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  flex-direction: column;
  gap: 0.25rem;
}

.bc-nav__menu span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: #ecfeff;
}

.bc-nav-spacer {
  height: 5.15rem;
}

.bc-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  justify-content: flex-end;
  background: rgba(2, 8, 23, 0.72);
  backdrop-filter: blur(12px);
}

.bc-mobile-menu__panel {
  width: min(88vw, 22rem);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 5.5rem 1rem 1rem;
  border-left: 1px solid rgba(125, 211, 252, 0.18);
  background: rgba(2, 8, 23, 0.94);
}

.bc-mobile-menu__panel a,
.bc-mobile-menu__panel button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 1rem;
  background: rgba(14, 165, 233, 0.1);
  color: #e0f2fe;
  padding: 0.9rem 1rem;
  font-weight: 900;
  text-align: left;
}

.bc-floating-search {
  position: fixed;
  right: clamp(1rem, 4vw, 3.5rem);
  bottom: 2rem;
  z-index: 1900;
  display: flex;
  width: 4.1rem;
  height: 4.1rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.16);
  color: #ecfeff;
  box-shadow: 0 0 34px rgba(14, 231, 242, 0.18), 0 20px 55px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.bc-floating-search span {
  font-size: 1.45rem;
  line-height: 1;
}

.bc-floating-search small {
  font-size: 0.62rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  .bc-nav__links,
  .bc-nav__ghost,
  .bc-nav__login {
    display: none;
  }

  .bc-nav__menu {
    display: inline-flex;
  }
}

@keyframes VibeCodingFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
