* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  background-color: #000 !important;
  color: white !important;
  font-family: "Segoe UI", sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  flex-wrap: nowrap;
  background-color: #000 !important;
}

.logo {
  text-decoration: none;
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 1;
  flex-wrap: nowrap;
}

.nav-links a {
  color: #ccc !important;
  text-decoration: none;
  margin-left: 24px;
  margin-right: 16px;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: white;
  transform: translateY(-1px);
}

.featuresBtn {
  color: #ccc !important;
  font-weight: bold;
  margin-right: 8px;
}

.login-btn {
  background-color: #1f1f1f !important;
  color: white !important;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 9999px;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
}

.login-btn:hover {
  background-color: #333 !important;
  transform: scale(1.03);
}

.buy-btn {
  display: flex;
  cursor: pointer;
  background-color: #1f1f1f !important;
  color: white !important;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 8px 18px;
  border-radius: 9999px;
  border: none;
  outline: none;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
}

.buy-btn:focus,
.buy-btn:focus-visible,
.buy-btn:active {
  outline: none;
  border: none;
  box-shadow: none;
}

.buy-btn:hover {
  background-color: #333 !important;
  transform: scale(1.03);
}

.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 80px);
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.icon-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.icon-svg {
  width: 60px;
  height: 60px;
  display: inline-block;
  color: #ccc;
}

.label {
  font-size: 18px;
  color: white !important;
  font-weight: 500;
}

.sign-form {
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
  margin: 0 auto;
}

.sign-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background-color: #2c2c2c;
  color: #eaeaea !important;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.sign-form input:focus {
  border: 1px solid #ccc;
}

.sign-form button {
  width: 100%;
  padding: 10px;
  background-color: #eaeaea !important;
  color: #121212 !important;
  border: none;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  font-family: "Segoe UI", sans-serif;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
}

.sign-form button:hover {
  background-color: #d4d4d4;
  transform: scale(1.03);
}

.acc {
  margin-top: 30px;
}

.acc-lbl {
  color: #ccc !important;
}

.r-acc {
  color: white !important;
}

.r-acc:hover {
  color: #eaeaea;
  text-decoration: underline;
}

.icon-lheader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
}

.username-label {
  display: flex;
  align-items: center;
  margin-right: -4px;
  font-weight: 500;
  line-height: 1;
}

.logout-icon {
  width: 18px;
  height: 18px;
  fill: #ff0000 !important;
  vertical-align: middle;
  margin-left: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.logout-icon:hover {
  color: #ff4d4d;
}

.logout-btn {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.acc-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #ccc !important;
  vertical-align: middle;
  margin-right: 6px;
}

.account-btn {
  color: #ccc !important;
  font-weight: 500;
  font-size: 0.875rem;
}

.account-page {
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 20px;
}

.account-card {
  width: 100%;
  max-width: 760px;
  background: linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
  border: 1px solid #2d2d2d;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.account-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.account-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 28px 0;
}

.account-item {
  margin-bottom: 22px;
}

.account-item:last-child {
  margin-bottom: 0;
}

.account-item-label {
  display: block;
  color: #cfcfcf;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.account-item-box {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: linear-gradient(180deg, #0f1116 0%, #0a0c10 100%);
  border: 1px solid #2a2f3a;
  border-radius: 14px;
  color: #ffffff;
  font-size: 18px;
  box-sizing: border-box;
}

.account-item-box:hover {
  border-color: #3a4a7a;
}

.license-pill {
  gap: 12px;
}

.license-value {
  color: #ffffff;
  font-family: monospace;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.license-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.license-pill:hover .license-icons {
  opacity: 1;
}

.icon-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #4a4a4a;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.icon-btn:hover {
  background: #ebebeb;
  border-color: #7a7a7a;
  transform: scale(1.04);
}

.icon-svg {
  width: 16px;
  height: 16px;
  fill: #000000;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-content p {
  color: #aaa;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* HERO IMAGE */
.hero-image img {
  max-width: 520px;
  border-radius: 16px;
  border: 1px solid #2d2d2d;
  background: #121212;
}

.download-note {
  margin-top: 16px;
  color: #b8bfd1;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 520px;
}

.small-note {
  margin-top: 8px;
  color: #8f99b2;
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 520px;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.btn {
  padding: 12px 22px;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn.primary {
  background: #2f6fff;
  color: white;
  border: none;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* clean shadow */
}

.btn.primary:hover {
  background: #2459cc;
  transform: scale(1.03);
}

.btn.primary:focus,
.btn.primary:focus-visible,
.btn.primary:active {
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn.secondary {
  background: #1f1f1f;
  border: 1px solid #343434;
  opacity: 0.9;
  color: white;
}

.btn.secondary:hover {
  background: #333;
  transform: scale(1.03);
}

/* ========================= */
/* FEATURES */
/* ========================= */

.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  text-align: center;
}

.features h2 {
  font-size: 2.2rem;
  margin-bottom: 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  background: #141414;
  border: 1px solid #2d2d2d;
  border-radius: 16px;
  padding: 30px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: #aaa;
}

/* ========================= */
/* PRICING */
/* ========================= */

.pricing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  text-align: center;
}

.pricing h2 {
  font-size: 2.2rem;
  margin-bottom: 32px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  background: #141414;
  border: 1px solid #2d2d2d;
  border-radius: 16px;
  padding: 30px;
  text-align: left;
}

.pricing-card.highlight {
  border-color: #2f6fff;
  box-shadow: 0 0 18px rgba(47, 111, 255, 0.12);
}

.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.pricing-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1d2a4a 0%, #162033 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ea7ff;
  flex-shrink: 0;
}

.pricing-card.highlight .pricing-icon {
  color: #36d7ff;
}

.pricing-card-header h3 {
  margin: 0;
  color: white;
  font-size: 1.1rem;
}

.pricing-subtitle {
  color: #8f99b2;
  font-size: 0.98rem;
  margin-top: 4px;
}

.pricing-list {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #d7def0;
  font-size: 1.05rem;
  line-height: 1.45;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #36d7ff;
  min-width: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-card .btn {
  margin-top: 6px;
}

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

.footer {
  text-align: center;
  padding: 30px;
  color: #777;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-github {
  color: #9aa3b2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.footer-github:hover {
  color: #ffffff;
  transform: scale(1.1);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

body::before {
  content: "";
  position: fixed;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(47,111,255,0.15), transparent 70%);
  z-index: -1;
}

.hero-image img {
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(47, 111, 255, 0.25);
}

a {
  text-decoration: none;
}

.feature-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.account-download-section {
  width: 100%;               
  display: flex;
  flex-direction: column;
  align-items: center;        
  margin-top: 24px;
}

.account-download-btn {
  padding: 12px 22px;
  font-size: 16px;
  background: #2f6fff;
  color: #fff !important;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.account-download-btn:active {
  transform: scale(0.97);
}

.account-download-btn:hover {
  background: #2459cc;
  transform: scale(1.03);
}

.status-active {
  color: #4ade80;
  font-weight: 600;
}

.account-item + .account-item {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: 18px;
}

.small-note {
  margin-top: 14px;
  color: #9aa3b2;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 520px;
}

.download-note {
  margin-top: 18px;
  color: #6b7280; 
  font-size: 0.72rem;
  line-height: 1.4;
  max-width: 480px;
  opacity: 0.65;
}

.download-note strong {
  color: #8b93a6;
  font-weight: 500;
}

.dot {
  margin-right: 6px;
  color: #6b7280;
}

.account-download-note {
  margin-top: 12px;
  text-align: center;
  color: #6b7280;
  font-size: 0.72rem;
  line-height: 1.4;
  max-width: 420px;
  opacity: 0.65;
}

.account-download-note strong {
  color: #8b93a6;
  font-weight: 500;
}