* {
  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;
    }
}
.voice-player {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: #181818;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.voice-player:hover {
  border-color: rgba(212, 175, 55, 0.75);
  background: #1d1d1d;
}

.voice-play-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37;
  font-size: 13px;
  cursor: pointer;
}

.voice-info {
  flex: 1;
}

.voice-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.voice-label {
  color: #d4af37;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.voice-duration {
  color: rgba(212, 175, 55, 0.7);
  font-size: 11px;
}

.voice-equalizer {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 22px;
}

.voice-equalizer span {
  width: 3px;
  height: 8px;
  border-radius: 999px;
  background: #d4af37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.35);
}

.voice-player.playing .voice-equalizer span {
  animation: voiceWave 0.8s infinite ease-in-out;
}

.voice-player.playing .voice-equalizer span:nth-child(2n) {
  animation-delay: 0.1s;
}

.voice-player.playing .voice-equalizer span:nth-child(3n) {
  animation-delay: 0.2s;
}

.voice-player.playing .voice-equalizer span:nth-child(4n) {
  animation-delay: 0.3s;
}

@keyframes voiceWave {
  0%, 100% {
    height: 6px;
    opacity: 0.45;
  }
  50% {
    height: 22px;
    opacity: 1;
  }
}

@keyframes micPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}
#voiceBtn {
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.65);
  background: rgba(255, 255, 255, 0.03);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

#voiceBtn:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: #d4af37;
  color: #ffffff;
}

#voiceBtn svg {
  display: block;
}

#voiceBtn.recording {
  background: #d4af37;
  color: #111;
  border-color: #d4af37;
  animation: micPulse 1.4s infinite ease-in-out;
}
.mic-icon {
  width: 22px;
  height: 22px;
  transition: transform .2s ease;
}

#voiceBtn:hover .mic-icon {
  transform: scale(1.08);
}

#voiceBtn.recording .mic-icon {
  transform: scale(1.12);
}

/* ===== VICTORIA CHAT TABS + COLLECTION ===== */

.chat-tabs{
  display:flex;
  gap:10px;
  margin:18px 0 8px;
}

.chat-tab{
  flex:1;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.28);
  background:rgba(255,255,255,.04);
  color:#d4af37;
  font-weight:700;
  cursor:pointer;
}

.chat-tab.active{
  background:#d4af37;
  color:#111;
}

.photos-panel{
  display:none;
  padding:22px 0;
  max-height:420px;
  overflow-y:auto;
}

.photo-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.photo-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(212,175,55,.18);

  transition:.25s ease;
  cursor:pointer;
}

.photo-grid img:hover{
  transform:scale(1.03);
  border-color:#d4af37;
}

.locked-gallery{
  text-align:center;
  padding:42px 22px;
  border:1px solid rgba(212,175,55,.22);
  border-radius:22px;
  background:rgba(255,255,255,.04);
}

.lock-icon{
  display:flex;
  align-items:center;
  justify-content:center;

  width:90px;
  height:90px;

  margin:0 auto 24px;

  border-radius:50%;

  background:rgba(212,175,55,.05);

  border:1px solid rgba(212,175,55,.25);

  font-size:48px;

  box-shadow:
      0 0 40px rgba(212,175,55,.12);
}

.unlock-btn{
  display:inline-block;
  margin-top:18px;
  padding:14px 24px;
  border-radius:999px;
  background:#d4af37;
  color:#111;
  font-weight:700;
}

@media(max-width:700px){
  .photo-grid{
    grid-template-columns:1fr;
  }

  .photo-grid img{
    height:auto;
  }
}
/* ===== COLLECTION PREVIEW ===== */

.collections-preview{
    margin:22px 0;
}

.collections-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
}

.collection-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(212,175,55,.15);
    border-radius:20px;
    overflow:hidden;
}

.collection-card img{
    display:block;
    width:100%;
    height:220px;
    object-fit:cover;
    object-position:center 35%;
}

.collection-card h4{
    margin:14px 16px 8px;
}

.collection-card p{
    margin:6px 16px;
    font-size:15px;
}

.collection-card .unlock-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:120px;
    height:48px;

    margin:16px;

    padding:0 24px;

    border-radius:999px;

    background:#d4af37;
    color:#111;

    font-size:17px;
    font-weight:700;

    transition:.25s ease;
}

.collection-card .unlock-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 24px rgba(212,175,55,.35);
}
.consent-box{
    display:flex;
    align-items:flex-start;
    gap:12px;

    width:100%;

    margin:18px 0;

    text-align:left;

    line-height:1.6;
}

.consent-box input{
    margin-top:4px;
    flex-shrink:0;
}

.consent-box span{
    flex:1;
    font-size:15px;
    color:#e6e6e6;
}
.collection-cover{
    width:100%;
    margin:20px 0 30px;
    overflow:hidden;
    border-radius:18px;
    border:1px solid rgba(212,175,55,.25);
}

.collection-cover img{
    width:100%;
    max-height:420px;
    aspect-ratio:16/9;
    display:block;
    object-fit:cover;
    object-position:center 35%;
}

.collection-cover:hover img{
    transform:scale(1.02);
}
.collection-price{
    color:#d4af37;
    font-size:26px;
    font-weight:700;
    margin-top:18px;
}

.collection-price span{
    display:block;
    color:#d8d8d8;
    font-size:14px;
    font-weight:400;
    margin-top:4px;
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin-top:30px;
}

.gallery-item{
    overflow:hidden;
    border-radius:16px;
    cursor:pointer;
    background:#141414;
}

.gallery-item img{
    width:100%;
    aspect-ratio:3/4;
    object-fit:cover;
    display:block;
    transition:.25s;
}

.gallery-item:hover img{
    transform:scale(1.03);
}

@media(max-width:768px){

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

}

.gallery-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.gallery-lightbox.active{
    display:flex;
}

.gallery-lightbox img{
    max-width:90vw;
    max-height:88vh;
    object-fit:contain;
    border-radius:16px;
}

.lightbox-close{
    position:fixed;
    top:22px;
    right:28px;
    background:none;
    border:none;
    color:white;
    font-size:44px;
    cursor:pointer;
}

.lightbox-arrow{
    position:fixed;
    top:50%;
    transform:translateY(-50%);
    width:54px;
    height:70px;
    border:none;
    border-radius:14px;
    background:rgba(255,255,255,.12);
    color:white;
    font-size:54px;
    cursor:pointer;
}

.lightbox-prev{
    left:24px;
}

.lightbox-next{
    right:24px;
}

@media(max-width:768px){

.lightbox-arrow{
    width:44px;
    height:60px;
    font-size:42px;
}

.lightbox-prev{
    left:10px;
}

.lightbox-next{
    right:10px;
}

}
.collection-owned{
    color:#d4af37;
    font-size:16px;
    font-weight:600;
    margin:10px 0 20px;
}
/* ===========================
   PHOTO VOTES
=========================== */

.photo-votes{
    display:flex;
    justify-content:center;
    gap:10px;
    padding:10px 0 16px;
}

.vote-btn{
    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    border:1px solid rgba(212,175,55,.25);

    background:#1d1d1d;

    color:#fff;

    cursor:pointer;

    font-size:20px;

    transition:.25s ease;
}

.vote-btn:hover{
    background:#2a2a2a;
    border-color:#d4af37;
    transform:translateY(-2px);
    box-shadow:0 6px 18px rgba(212,175,55,.18);
}

.vote-btn.active{
    background:#d4af37;
    color:#111;
    border-color:#d4af37;
    box-shadow:0 0 20px rgba(212,175,55,.35);
}
/* ===========================
   PHOTO STATS
=========================== */

.stats-table-wrap{
    margin-top:24px;
    overflow-x:auto;
}

.stats-table{
    width:100%;
    border-collapse:collapse;
    font-size:14px;
}

.stats-table th,
.stats-table td{
    padding:12px 10px;
    border-bottom:1px solid rgba(255,255,255,.08);
    text-align:left;
}

.stats-table th{
    color:#d4af37;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.stats-table td{
    color:#e6e6e6;
}

.stats-table tr:hover{
    background:rgba(255,255,255,.04);
}
/* ===== MOBILE CHAT INPUT FIX ===== */

@media (max-width: 700px) {

  .chat-input-row {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 10px;
    width: 100%;
  }

  .chat-input-row input {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  #voiceBtn {
    grid-column: 1;
    width: 54px;
    height: 50px;
  }

  #sendBtn {
    grid-column: 2;
    width: 100%;
    height: 50px;
    padding: 0 24px;
  }
}
/* ===== LANGUAGE BANNER ===== */

.language-banner {
  margin: 14px 0 0;
  padding: 11px 14px;
  border: 1px solid rgba(224, 189, 53, 0.22);
  border-radius: 12px;
  background: rgba(224, 189, 53, 0.055);
  text-align: center;
}

.language-banner__greeting {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.77rem;
  line-height: 1.4;
}

.language-banner__greeting span:not(:last-child):not(.language-banner__globe)::after {
  content: "·";
  margin-left: 10px;
  color: rgba(224, 189, 53, 0.55);
}

.language-banner__globe {
  font-size: 1rem;
}

.language-banner__message {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

@media (max-width: 520px) {
  .language-banner {
    padding: 10px;
  }

  .language-banner__greeting {
    gap: 4px 7px;
    font-size: 0.7rem;
  }

  .language-banner__greeting span:not(:last-child):not(.language-banner__globe)::after {
    margin-left: 7px;
  }

  .language-banner__message {
    font-size: 0.68rem;
  }
}