/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Tiro+Devanagari+Hindi:ital@0;1&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    background: #0a0a0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 40px 20px;
    font-family: 'Noto Serif Devanagari', serif;
  }
  .poster {
    width: 780px;
    max-width: 100%;
    background: linear-gradient(160deg, #12001a 0%, #0d0014 40%, #060010 100%);
    border: 1px solid rgba(220, 160, 80, 0.3);
    position: relative;
    overflow: hidden;
    padding: 60px 64px 70px;
    box-shadow: 0 0 80px rgba(180, 80, 220, 0.15), inset 0 0 120px rgba(100, 0, 160, 0.08);
  }
  .poster::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200, 80, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .poster::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 160, 30, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .corner {
    position: absolute;
    width: 60px; height: 60px;
    border-color: rgba(220, 160, 60, 0.6);
    border-style: solid;
  }
  .corner-tl { top: 16px; left: 16px; border-width: 2px 0 0 2px; }
  .corner-tr { top: 16px; right: 16px; border-width: 2px 2px 0 0; }
  .corner-bl { bottom: 16px; left: 16px; border-width: 0 0 2px 2px; }
  .corner-br { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; }
  .divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 22px 0;
  }
  .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220,160,60,0.5), transparent);
  }
  .divider-dot {
    width: 6px; height: 6px;
    background: rgba(220,160,60,0.7);
    transform: rotate(45deg);
    flex-shrink: 0;
  }
  .header {
    text-align: center;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
  }
  .kavi-label {
    font-size: 13px;
    letter-spacing: 3px;
    color: rgba(220,160,60,0.75);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 8px;
  }
  .kavi-name {
    font-size: 17px;
    color: rgba(220, 170, 80, 0.9);
    font-weight: 600;
    font-style: italic;
    font-family: 'Tiro Devanagari Hindi', serif;
  }
  .title {
    font-size: 58px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 18px 0 6px;
    text-shadow: 0 0 60px rgba(200, 100, 255, 0.5), 0 2px 4px rgba(0,0,0,0.8);
    font-family: 'Noto Serif Devanagari', serif;
    animation: shimmer 4s ease-in-out infinite;
  }
  @keyframes shimmer {
    0%, 100% { text-shadow: 0 0 60px rgba(200, 100, 255, 0.5), 0 2px 4px rgba(0,0,0,0.8); }
    50% { text-shadow: 0 0 80px rgba(200, 100, 255, 0.8), 0 0 120px rgba(255,160,30,0.2), 0 2px 4px rgba(0,0,0,0.8); }
  }
  .chorus {
    text-align: center;
    padding: 18px 30px;
    background: rgba(200, 80, 255, 0.08);
    border: 1px solid rgba(200, 80, 255, 0.2);
    border-radius: 8px;
    margin: 8px 0 28px;
    position: relative;
    z-index: 1;
  }
  .chorus p {
    font-size: 21px;
    color: #e8d0ff;
    line-height: 2;
    font-family: 'Tiro Devanagari Hindi', serif;
    font-style: italic;
  }
  .chorus .main-refrain {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    font-style: normal;
    text-shadow: 0 0 30px rgba(200,100,255,0.4);
  }
  .stanzas { position: relative; z-index: 1; }
  .stanza {
    margin-bottom: 28px;
    padding: 22px 26px;
    border-left: 3px solid rgba(200, 80, 255, 0.35);
    background: rgba(255,255,255,0.025);
    border-radius: 0 8px 8px 0;
    transition: border-color 0.3s, background 0.3s;
  }
  .stanza:hover {
    border-left-color: rgba(220, 160, 60, 0.6);
    background: rgba(255,255,255,0.04);
  }
  .stanza p {
    font-size: 19.5px;
    line-height: 2.1;
    color: rgba(240, 230, 255, 0.92);
    font-family: 'Tiro Devanagari Hindi', serif;
  }
  .stanza-ending {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(220,160,60,0.2);
  }
  .stanza-ending p {
    font-size: 19px;
    color: rgba(220, 160, 60, 0.9);
    font-weight: 600;
    line-height: 1.9;
    font-style: italic;
  }
  .change-word {
    font-size: 22px;
    color: #f0b030;
    font-weight: 700;
    font-style: normal;
  }
  .footer {
    text-align: center;
    margin-top: 10px;
    position: relative;
    z-index: 1;
  }
  .footer-text {
    font-size: 18px;
    color: rgba(214, 255, 160, 0.4);
    letter-spacing: 2px;
  }
  .photo-card {
      background: white;
      padding: 20px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.25);
      text-align: center;
      max-width: 400px;
      margin: 20px auto 0;
      align-items: center;
    }
  .photo-card1 img {
    width: 40%;
    max-width: 350px;
    border-radius: 15px;
    object-fit: cover;

    display: block;
    margin: auto;
  }
    .photo-card img {
      width: 100%;
      border-radius: 15px;
      object-fit: cover;
    }

    .photo-card h2 {
      margin-top: 15px;
      color: #333;
      font-size: 24px;
    }

    .photo-card p {
      color: #666;
      font-size: 15px;
    }

/* ── Comments Section ── */
.comments-section {
  width: 780px;
  max-width: 100%;
  margin-top: 28px;
  margin-bottom: 48px;
}
.comments-inner {
  background: linear-gradient(160deg, #12001a 0%, #0d0014 40%, #060010 100%);
  border: 1px solid rgba(220, 160, 80, 0.25);
  border-radius: 4px;
  padding: 36px 50px 44px;
  box-shadow: 0 0 40px rgba(180, 80, 220, 0.08);
}
.comments-heading { margin-bottom: 24px; }
.comments-title {
  text-align: center;
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 19px;
  font-weight: 600;
  color: rgba(220, 160, 60, 0.85);
  letter-spacing: 2px;
  margin: 14px 0 0;
}
.comment-auth { text-align: center; padding: 12px 0 20px; }
.signin-hint {
  color: rgba(240, 230, 255, 0.5);
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 15px;
  margin-bottom: 16px;
}
.google-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  color: rgba(240, 230, 255, 0.88);
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.google-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}
.comment-form { margin-bottom: 24px; }
.user-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(220, 160, 60, 0.4);
  flex-shrink: 0;
}
.user-name {
  color: rgba(220, 160, 60, 0.9);
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 14px;
  flex: 1;
}
.signout-btn {
  background: transparent;
  border: 1px solid rgba(220, 160, 60, 0.3);
  color: rgba(220, 160, 60, 0.55);
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.signout-btn:hover {
  border-color: rgba(220, 160, 60, 0.65);
  color: rgba(220, 160, 60, 0.9);
}
.comment-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 80, 255, 0.2);
  border-radius: 8px;
  color: rgba(240, 230, 255, 0.9);
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 16px;
  line-height: 1.8;
  padding: 14px 18px;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  margin-bottom: 12px;
  display: block;
}
.comment-textarea:focus { border-color: rgba(200, 80, 255, 0.5); }
.comment-textarea::placeholder { color: rgba(200, 180, 255, 0.28); }
.submit-btn {
  display: block;
  margin-left: auto;
  padding: 10px 32px;
  background: rgba(220, 160, 60, 0.12);
  border: 1px solid rgba(220, 160, 60, 0.4);
  border-radius: 20px;
  color: rgba(220, 160, 60, 0.9);
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.submit-btn:hover:not(:disabled) {
  background: rgba(220, 160, 60, 0.22);
  border-color: rgba(220, 160, 60, 0.7);
}
.submit-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.comments-list { margin-top: 8px; }
.comment-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.comment-item:last-child { border-bottom: none; }
.comment-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.comment-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(220, 160, 60, 0.3);
  flex-shrink: 0;
}
.comment-author {
  color: rgba(220, 160, 60, 0.85);
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 14px;
  font-weight: 600;
}
.comment-date {
  color: rgba(200, 180, 255, 0.38);
  font-size: 12px;
  margin-left: auto;
}
.comment-text {
  color: rgba(240, 230, 255, 0.78);
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 16px;
  line-height: 1.9;
  padding-left: 40px;
}
.comments-loading, .no-comments, .comments-error {
  text-align: center;
  color: rgba(200, 180, 255, 0.38);
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 14px;
  padding: 28px 0;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  body { padding: 20px 12px; }

  .poster { padding: 32px 20px 40px; }

  .title { font-size: 36px; }

  .chorus p { font-size: 17px; }
  .chorus .main-refrain { font-size: 19px; }

  .stanza { padding: 16px 14px; }
  .stanza p { font-size: 16px; line-height: 2; }
  .stanza-ending p { font-size: 16px; }
  .change-word { font-size: 18px; }

  .kavi-name { font-size: 15px; }

  .comments-section { width: 100%; margin-top: 16px; }
  .comments-inner { padding: 24px 18px 30px; }
  .comments-title { font-size: 16px; }

  .comment-text { padding-left: 20px; }
  .comment-textarea { font-size: 15px; padding: 12px 14px; }
}
