/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;
  background: #0a0a0a;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
header {
  width: 100%;
  background: #0d0d0d;
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-center ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-center ul li a {
  text-decoration: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  transition: 0.3s;
  font-weight: 500;
}

.nav-center ul li a.active {
  border: 1px solid #ffcc33;
  background: rgba(255, 204, 51, 0.1);
}

.nav-center ul li a:hover {
  background: rgba(255, 204, 51, 0.25);
  color: #ffd966;
}

.nav-right .btn-outline {
  padding: 8px 20px;
  background: #3b49df;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-right .btn-outline:hover {
  background: #5865f2;
}

/* ===== AVATAR ===== */
.nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s;
}

.nav-avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px #5865f2;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, #0a0a0a, #000);
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-text p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.white {
  color: #fff;
}

.typewriter {
  color: #00bfff;
  text-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 8px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #222;
  border-color: #555;
  transform: scale(1.05);
}

.btn.small {
  padding: 6px 14px;
  font-size: 0.9rem;
}

/* ===== HERO ARROW ===== */
.arrow {
  font-size: 2rem;
  margin-top: 20px;
  color: #fff;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 0 5px #fff);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* ===== FEATURED PLUGIN ===== */
.featured-section {
  padding: 80px 10%;
  background: #0d0d0d;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #00bfff;
}

.featured-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: #111;
  border-radius: 16px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(0, 191, 255, 0.6);
}

.featured-image {
  flex: 1 1 400px;
}

.featured-image img {
  width: 100%;
  border-radius: 12px;
  transition: 0.3s;
}

.featured-card:hover img {
  transform: scale(1.03);
}

.featured-info {
  flex: 1 1 400px;
}

.featured-info h3 {
  font-size: 1.8rem;
  color: #fff;
  margin: 0 0 15px 0;
}

.featured-info .desc {
  color: #aaa;
  margin-bottom: 15px;
  line-height: 1.5;
}

.featured-info .subdesc {
  color: #666;
  margin-bottom: 20px;
}

.trial-link {
  color: #00bfff;
}

.buy-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00bfff;
  text-shadow: 0 0 15px rgba(0, 191, 255, 0.9);
}

/* ===== PRODUCTS ===== */
.products-section {
  padding: 80px 10%;
  background: #0a0a0a;
  text-align: center;
}

.products-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.plugins-desc {
  color: #999;
  margin-bottom: 50px;
  font-size: 1rem;
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.plugin-card {
  background: #111;
  padding: 20px;
  border-radius: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.plugin-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.plugin-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.plugin-card p {
  color: #aaa;
  margin-bottom: 20px;
}

.plugin-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plugin-card .price {
  color: #00bfff;
  font-size: 1.2rem;
  font-weight: bold;
}

.plugin-card.purple:hover {
  box-shadow: 0 0 25px rgba(186, 85, 211, 0.8);
  transform: translateY(-6px);
}

.plugin-card.blue:hover {
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.9);
  transform: translateY(-6px);
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 30px;
  background: #000;
  color: #666;
  font-size: 0.9rem;
}

/* ===== PROFILE DROPDOWN ===== */
.profile-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.profile-dropdown {
  position: absolute;
  right: 0;
  top: 48px;
  width: 260px;
  background: #0f0f12;
  border: 1px solid #232329;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
  z-index: 1000;
}

.hidden { display: none; }

.profile-info {
  padding: 12px 14px 8px;
}

.profile-name {
  font-weight: 700;
  color: #fff;
}

.profile-email {
  color: #b3b3b3;
  font-size: .9rem;
  margin-top: 2px;
}

.profile-links {
  display: flex;
  flex-direction: column;
  padding: 8px;
}

.profile-link {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: none;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.profile-link:hover {
  background: #1a1a1f;
}

.signout-btn {
  width: calc(100% - 16px);
  margin: 8px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: #2b2b36;
  color: #ff6b6b;
  cursor: pointer;
}

.signout-btn:hover {
  background: #333347;
}

/* ===== LICENSE MANAGER PAGE ===== */
.licenses-page {
  background: #0d0d0d;
  color: #fff;
  min-height: 100vh;
  padding-bottom: 80px;
}

.licenses-hero {
  padding: 60px 10%;
  background: linear-gradient(to bottom, #111, #0a0a0a);
  border-bottom: 1px solid #1f1f1f;
}

.licenses-hero h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 6px;
}

.licenses-hero .muted {
  color: #aaa;
  font-size: 1rem;
}

.licenses-section { padding: 40px 10%; }

.licenses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.license-card {
  background: #111215;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.08);
}

.license-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.25);
}

.license-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-title {
  font-weight: 600;
  color: #fff;
  font-size: 1.1rem;
}

.status-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid transparent;
}

.status-pill.active {
  color: #8cfaa7;
  border-color: #2a7e45;
  background: rgba(42, 126, 69, 0.2);
}

.status-pill.expired {
  color: #ff7b7b;
  border-color: #7e2a2a;
  background: rgba(126, 42, 42, 0.2);
}

.license-key {
  font-family: monospace;
  background: #0a0a0a;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid #2a2a2f;
  color: #00bfff;
}

.license-actions {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.copy-btn {
  background: #222;
  border: 1px solid #444;
  color: #00bfff;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.copy-btn:hover {
  background: #333;
  color: #fff;
}

.license-date {
  font-size: 0.85rem;
  color: #888;
  margin-top: 6px;
}
