
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    background: radial-gradient(circle at top, #1a1a1a, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.05), rgba(0,0,0,0));
}

.container {
    text-align: center;
    z-index: 2;
}

.logo {
    font-size: 42px;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.logo span {
    color: #d4af37;
}

.loader {
    width: 70px;
    height: 70px;
    border: 6px solid rgba(255,255,255,0.1);
    border-top: 6px solid #d4af37;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin: 0 auto 20px;
}

.text {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.subtext {
    font-size: 14px;
    opacity: 0.7;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont;
}

body {
  background: radial-gradient(circle at top, #0f3d2e, #071f17);
  color: #e9f5f0;
  line-height: 1.7;
}

.container {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  font-size: 34px;
  color: #5ee6b8;
  margin-bottom: 8px;
}

.header p {
  font-size: 14px;
  opacity: 0.8;
}

.card {
  background: linear-gradient(180deg, #0e2f23, #081e16);
  border-radius: 14px;
  padding: 26px;
  margin-bottom: 22px;
  border: 1px solid rgba(94, 230, 184, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.card h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #7cf0c7;
}

.card p {
  font-size: 15px;
  opacity: 0.95;
}

.card ul {
  margin-top: 10px;
  padding-left: 18px;
}

.card ul li {
  margin-bottom: 6px;
}

.footer {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  opacity: 0.7;
}
