* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0b0f;
  color: white;
}

a {
  text-decoration: none;
}

/* HERO */

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(8, 8, 12, 0.55), rgba(8, 8, 12, 0.75)),
    radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 35%),
    #0b0b0f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

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

.brand {
  color: #d4af37;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

h1 {
  font-size: 54px;
  line-height: 1.08;
  margin: 0 0 18px;
}

p {
  font-size: 18px;
  line-height: 1.6;
  color: #d8d8d8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.25s ease;
}

.btn-gold {
  background: #d4af37;
  color: #111;
}

.btn-dark {
  border: 1px solid rgba(255,255,255,0.16);
  color: white;
  background: rgba(255,255,255,0.04);
}

/* PROFILE */

.profile-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    linear-gradient(rgba(8, 8, 12, 0.75), rgba(8, 8, 12, 0.9)),
    #0b0b0f;
}

.profile-card {
  width: 100%;
  max-width: 1120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.35);
}

.profile-image-wrap {
  width: 100%;
}

.profile-image {
  width: 100%;
  height: 720px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.profile-info h1 {
  font-size: 64px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 20px;
  color: #f0e3bd;
  margin-bottom: 18px;
}

.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0;
}

.tags span {
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #f0e3bd;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.description {
  max-width: 520px;
}

/* CHAT */

.chat-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(8, 8, 12, 0.82), rgba(8, 8, 12, 0.92)),
    #0b0b0f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 16px;
}

.chat-box {
  width: 100%;
  max-width: 760px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.35);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.chat-avatar img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
}

.chat-title {
  font-size: 34px;
  margin: 0;
}

.chat-status {
  margin: 6px 0 0;
  color: #d4af37;
  font-size: 14px;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 0;
  max-height: 400px;
  overflow-y: auto;
}

.message {
  max-width: 78%;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 17px;
  line-height: 1.5;
}

.message.luna {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.12);
  color: white;
  align-self: flex-start;
}

.message.user {
  background: #d4af37;
  color: #111;
  align-self: flex-end;
}

.chat-input-row {
  display: flex;
  gap: 12px;
  padding-top: 8px;
}

.chat-input-row input {
  flex: 1;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: white;
  padding: 0 20px;
  font-size: 16px;
  outline: none;
}

.chat-input-row button {
  border: none;
  background: #d4af37;
  color: #111;
  font-weight: bold;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-image {
    height: 480px;
  }

  h1,
  .profile-info h1 {
    font-size: 40px;
  }

  p {
    font-size: 16px;
  }
}

@media (max-width: 700px) {
  .chat-box {
    padding: 18px;
  }

  .chat-title {
    font-size: 28px;
  }

  .message {
    max-width: 88%;
    font-size: 15px;
  }

  .chat-input-row {
    flex-direction: column;
  }

  .chat-input-row button {
    height: 50px;
  }
}
.paywall-box {
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255,255,255,0.04);
  text-align: center;
}

.paywall-box h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.paywall-box p {
  max-width: 560px;
  margin: 0 auto 20px;
}

.paywall-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.chat-input-row input:disabled,
.chat-input-row button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px;
  text-align: left;
}

.price-card.featured {
  grid-column: 1 / -1;
  max-width: 680px;
  margin: 0 auto;
}

.price-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.price {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #fff;
}

.price span {
  font-size: 16px;
  color: #d8d8d8;
  font-weight: normal;
}

.price-card p {
  margin-bottom: 18px;
}

.price-card ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: #d8d8d8;
}

.price-card li {
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
.pricing-shell {
  grid-template-columns: 1fr;
  max-width: 980px;
}

.pricing-top {
  text-align: center;
}

.pricing-description {
  max-width: 720px;
  margin: 0 auto 30px;
}

.pricing-back {
  margin-top: 24px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px;
  text-align: left;
}

.price-card.featured {
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.08);
}

.price-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.price {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #fff;
}

.price span {
  font-size: 16px;
  color: #d8d8d8;
  font-weight: normal;
}

.price-card p {
  margin-bottom: 18px;
}

.price-card ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: #d8d8d8;
}

.price-card li {
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
.account-badge {
  margin-top: 4px;
  font-size: 13px;
  color: #e0bd35;
  opacity: 0.9;
}
.account-badge a {
    color: #e0bd35;
    text-decoration: underline;
}

.account-badge a:hover {
    opacity: 0.8;
}
/* ===== NEW PRICING DESIGN ===== */

.plan-icon{
    font-size:42px;
    margin-bottom:12px;
    text-align:center;
}

.popular-badge{
    position:absolute;
    top:-12px;
    right:20px;
    background:#d4af37;
    color:#000;
    font-size:11px;
    font-weight:700;
    padding:6px 12px;
    border-radius:20px;
    letter-spacing:1px;
}

.price-card{
    position:relative;
    transition:all .25s ease;
}

.price-card:hover{
    transform:translateY(-6px);
    border-color:rgba(212,175,55,.35);
}

.featured{
    transform:scale(1.05);
    border:1px solid rgba(212,175,55,.5) !important;
    box-shadow:0 0 30px rgba(212,175,55,.15);
}

.featured:hover{
    transform:scale(1.07);
}

.price-card .btn{
    width:100%;
    text-align:center;
    display:block;
}

.price-card ul{
    min-height:140px;
}

.pricing-top h1{
    margin-bottom:12px;
}

.pricing-description{
    max-width:650px;
}

@media (max-width:900px){

    .featured{
        transform:none;
    }

    .featured:hover{
        transform:none;
    }

    .price-card ul{
        min-height:auto;
    }
}