:root {
  --primary: #0f766e;
  --primary-dark: #115e59;
  --primary-soft: #ecfdf5;
  --accent: #1d4ed8;
  --accent-soft: #eff6ff;
  --bg: #f1f5f9;
  --text: #0f172a;
  --muted: #64748b;
  --card-bg: #ffffff;
  --border-soft: #e2e8f0;
  --footer-bg: #020617;
}

/* Global reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(circle at top left, #e0f2fe 0, #f8fafc 40%, #f1f5f9 100%);
  color: var(--text);
}

/* Layout wrappers */
.top-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  color: #e5e7eb;
  padding: 10px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: radial-gradient(circle at top left, #22c55e, #0f766e);
  padding: 6px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.6);
}

.brand-text h1 {
  font-size: 1.05rem;
  line-height: 1.35;
}

.tagline {
  font-size: 0.78rem;
  color: #cbd5f5;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
}

.main-nav a {
  color: #e5e7eb;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.18s ease;
}

.main-nav a:hover {
  background: rgba(148, 163, 184, 0.2);
  border-color: rgba(148, 163, 184, 0.3);
}

/* Hero section */
.hero {
  position: relative;
  padding: 40px 5% 52px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.2), transparent 60%),
    radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.3), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 780px;
  padding: 24px 20px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.88);
  color: #e5e7eb;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.8);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.16);
  color: #a5f3fc;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.hero-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.hero h2 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 0.9rem;
  color: #e2e8f0;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #f9fafb;
  box-shadow: 0 12px 25px rgba(15, 118, 110, 0.5);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 35px rgba(15, 118, 110, 0.6);
}

.btn.ghost {
  background: transparent;
  color: #bfdbfe;
  border-color: rgba(191, 219, 254, 0.6);
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

/* Cards row */
.cards-row {
  padding: 26px 5% 34px;
  display: grid;
  gap: 18px;
}

.info-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.info-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.info-card ul {
  margin-left: 18px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.info-card .plain-list li + li {
  margin-top: 4px;
}

.plain-list {
  list-style: none;
}

.plain-list a {
  color: var(--accent);
  text-decoration: none;
}

.plain-list a:hover {
  text-decoration: underline;
}

/* Info strip */
.strip {
  padding: 0 5% 40px;
}

.strip-inner {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-soft), var(--accent-soft));
  border: 1px dashed rgba(148, 163, 184, 0.8);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-light {
  background: #0f172a;
  color: #f9fafb;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: #cbd5f5;
  margin-top: 30px;
  padding: 24px 5% 14px;
}

.footer-cols {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.site-footer h4 {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.site-footer p,
.site-footer li {
  font-size: 0.82rem;
  line-height: 1.6;
}

.site-footer a {
  color: #e5e7eb;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer .plain-list li + li {
  margin-top: 4px;
}

.copyright {
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Inner pages */
.page-header {
  padding: 20px 5% 12px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.07), rgba(37, 99, 235, 0.03));
  border-bottom: 1px solid var(--border-soft);
}

.page-header h2 {
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.page-header p {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.page-content {
  padding: 20px 5% 40px;
}

.page-content h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.page-content p,
.page-content li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Table */
.table-docs {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 0.9rem;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.table-docs th,
.table-docs td {
  border: 1px solid #e5e7eb;
  padding: 9px 10px;
  text-align: left;
}

.table-docs th {
  background: linear-gradient(90deg, #0f766e, #1d4ed8);
  color: #f9fafb;
  font-weight: 500;
}

.table-docs tbody tr:nth-child(even) {
  background: #f9fafb;
}

.table-docs tbody tr:hover {
  background: #eff6ff;
}

.table-docs a {
  color: var(--accent);
  text-decoration: none;
}

.table-docs a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (min-width: 768px) {
  .cards-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-text h1 {
    font-size: 1.2rem;
  }
}

@media (max-width: 640px) {
  .top-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    padding: 18px 14px;
  }
}

/* Coming soon / under development message */
.announcement {
  margin: 20px 0;
  text-align: center;
}

.coming-soon {
  font-size: 2rem;
  font-weight: 800;
  color: #facc15;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  animation: pulse 1.8s infinite;
}

.coming-sub {
  margin-top: 8px;
  font-size: 1rem;
  color: #f1f5f9;
  font-weight: 500;
}
.img {
  float: left;
  margin-left: 15px;
  width: 200px;
  height: 200px;  
  }
@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1); }
}

/* Below CSS Code for Notice Tab */

body {
    font-family: 'cursive';
    background-color: #e7e7e7;
    color: #777;
    font-weight: 300;
}

.tab-wrap {
    -webkit-transition: 0.3s box-shadow ease;
    transition: 0.3s box-shadow ease;
    border-radius: 6px;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    list-style: none;
    background-color: #fff;
    margin: 40px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.tab-wrap:hover {
    box-shadow: 0 12px 23px rgba(0, 0, 0, 0.23), 0 10px 10px rgba(0, 0, 0, 0.19);
}

.tab {
    display: none;
}

.tab:checked:nth-of-type(1)~.tab__content:nth-of-type(1) {
    opacity: 1;
    -webkit-transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
    transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    transition: 0.5s opacity ease-in, 0.8s transform ease, 0.8s -webkit-transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.tab:checked:nth-of-type(2)~.tab__content:nth-of-type(2) {
    opacity: 1;
    -webkit-transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
    transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    transition: 0.5s opacity ease-in, 0.8s transform ease, 0.8s -webkit-transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.tab:checked:nth-of-type(3)~.tab__content:nth-of-type(3) {
    opacity: 1;
    -webkit-transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
    transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    transition: 0.5s opacity ease-in, 0.8s transform ease, 0.8s -webkit-transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.tab:checked:nth-of-type(4)~.tab__content:nth-of-type(4) {
    opacity: 1;
    -webkit-transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
    transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    transition: 0.5s opacity ease-in, 0.8s transform ease, 0.8s -webkit-transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.tab:checked:nth-of-type(5)~.tab__content:nth-of-type(5) {
    opacity: 1;
    -webkit-transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
    transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    transition: 0.5s opacity ease-in, 0.8s transform ease, 0.8s -webkit-transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.tab:first-of-type:not(:last-of-type)+label {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.tab:not(:first-of-type):not(:last-of-type)+label {
    border-radius: 0;
}

.tab:last-of-type:not(:first-of-type)+label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.tab:checked+label {
    background-color: #fff;
    box-shadow: 0 -1px 0 #fff inset;
    cursor: default;
}

.tab:checked+label:hover {
    box-shadow: 0 -1px 0 #fff inset;
    background-color: #fff;
}

.tab+label {
    box-shadow: 0 -1px 0 #eee inset;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: #333;
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
    text-align: center;
    background-color: #f2f2f2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    -webkit-transition: 0.3s background-color ease, 0.3s box-shadow ease;
    transition: 0.3s background-color ease, 0.3s box-shadow ease;
    height: 70px;
    box-sizing: border-box;
    padding: 15px;
}

.tab+label:hover {
    background-color: #f9f9f9;
    box-shadow: 0 1px 0 #f4f4f4 inset;
}

.tab__content {
    padding: 10px 25px;
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: -1;
    opacity: 0;
    left: 0;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    border-radius: 6px;
}