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

:root {
  --bg-primary: #181611;
  --bg-secondary: #1e1a10;
  --bg-card: #221c10;
  --bg-input: #181611;
  --text-primary: #ffffff;
  --text-secondary: #b9b09d;
  --text-muted: #7a7060;
  --border-color: #393328;
  --accent-gold: #eead2b;
  --accent-green: #4ade80;
  --accent-red: #ef4444;
  --notice-bg: #221c10;
  --notice-border: #eead2b;
}

html, body {
  height: 100%;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

#app {
  max-width: 640px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
}

.page {
  min-height: 100vh;
}

.hidden {
  display: none !important;
}

/* === Site Header === */
.site-header {
  text-align: center;
  padding: 20px 16px 12px;
  border-bottom: 1px solid var(--border-color);
  background: rgba(24, 22, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header h1 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
}

/* === Sub Header === */
.sub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  background: rgba(24, 22, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}

.sub-header h2 {
  font-size: 16px;
  font-weight: 600;
}

.btn-back {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
}

.btn-submit {
  background: var(--accent-gold);
  border: none;
  color: #181611;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-submit:hover {
  opacity: 0.9;
}

/* === Board Container === */
.board-container {
  padding-bottom: 80px;
}

/* === Notice Section === */
.notice-section {
  padding: 20px 16px 0;
}

.notice-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.notice-box {
  border: 1px solid var(--notice-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--notice-bg);
}

.notice-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  gap: 10px;
  border-bottom: 1px solid rgba(238, 173, 43, 0.15);
}

.notice-item:last-child {
  border-bottom: none;
}

.notice-icon {
  color: var(--accent-gold);
  font-size: 16px;
  flex-shrink: 0;
}

.notice-text {
  flex: 1;
  font-size: 14px;
  color: var(--text-primary);
}

.notice-date {
  font-size: 12px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

/* === Thread List === */
.thread-list {
  margin-top: 8px;
}

.thread-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: background-color 0.2s;
}

.thread-item:hover {
  background-color: var(--bg-card);
}

.thread-item:active {
  background-color: var(--bg-secondary);
}

.thread-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 12px;
}

.thread-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.thread-comments {
  display: flex;
  align-items: center;
  gap: 3px;
}

.thread-comments svg {
  width: 16px;
  height: 16px;
}

.thread-time {
  color: var(--text-muted);
  font-size: 13px;
}

/* === Loading / Empty State === */
.loading-msg,
.empty-msg {
  text-align: center;
  padding: 40px 16px;
  color: var(--text-secondary);
  font-size: 14px;
}

/* === FAB Write Button === */
.fab-write {
  position: fixed;
  bottom: 24px;
  right: calc(50% - 300px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #181611;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(238, 173, 43, 0.4);
  z-index: 200;
  transition: transform 0.15s, box-shadow 0.15s;
}

.fab-write:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(238, 173, 43, 0.5);
}

@media (max-width: 680px) {
  .fab-write {
    right: 20px;
  }
}

/* === Create Form === */
.form-container {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-title {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--text-primary);
  outline: none;
  font-family: inherit;
}

.input-title:focus {
  border-color: var(--accent-gold);
}

.input-content {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  min-height: 300px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.6;
}

.input-content:focus {
  border-color: var(--accent-gold);
}

.input-title::placeholder,
.input-content::placeholder {
  color: var(--text-muted);
}

/* === Thread Detail === */
.detail-container {
  padding-bottom: 72px;
}

.detail-post {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border-color);
}

.detail-post h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
}

.detail-post p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  white-space: pre-wrap;
  word-break: break-word;
}

.detail-time {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

.detail-comments-header {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

/* === Comment List === */
.comment-list {
  padding: 0;
}

.comment-item {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
}

.comment-content {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  white-space: pre-wrap;
  word-break: break-word;
}

.comment-time {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.comment-empty {
  text-align: center;
  padding: 30px 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.btn-show-all-comments {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: none;
  border-bottom: 1px solid var(--border-color);
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.15s;
}

.btn-show-all-comments:hover {
  background: var(--bg-secondary);
}

/* === Comment Input Bar === */
.comment-input-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 640px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  z-index: 100;
}

.input-comment {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  font-family: inherit;
}

.input-comment:focus {
  border-color: var(--accent-gold);
}

.input-comment::placeholder {
  color: var(--text-muted);
}

.btn-send {
  background: var(--accent-gold);
  border: none;
  color: #181611;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-send:hover {
  opacity: 0.9;
}

/* === Scrollbar === */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: #4a3f2e;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* === Media Attach Button === */
.btn-attach {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px dashed var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-secondary);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.btn-attach:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-attach svg {
  flex-shrink: 0;
}

/* === Media Preview Section (Post) === */
.media-preview-section {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
}

.media-thumb {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-input);
}

.media-thumb img,
.media-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destruct-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}

.destruct-options select {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 12px;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
}

.destruct-options select:focus,
.destruct-options input:focus {
  border-color: var(--accent-gold);
}

.destruct-options input[type="number"] {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 12px;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  width: 70px;
}

.destruct-options-small input[type="number"] {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 11px;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  width: 60px;
}

.btn-remove-media {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  flex-shrink: 0;
}

.btn-remove-media:hover {
  color: var(--accent-red);
}

/* === Comment Media Attach === */
.btn-attach-comment {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.btn-attach-comment:hover {
  color: var(--accent-gold);
}

/* === Comment Media Preview === */
.comment-media-preview {
  position: fixed;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 640px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  z-index: 100;
}

.media-thumb-small {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-input);
}

.media-thumb-small img,
.media-thumb-small video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destruct-options-small {
  display: flex;
  gap: 4px;
  flex: 1;
}

.destruct-options-small select {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 11px;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
}

.btn-remove-media-small {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
}

.btn-remove-media-small:hover {
  color: var(--accent-red);
}

/* === Media Link (in post/comment) === */
.media-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
}

.media-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.media-link svg {
  flex-shrink: 0;
}

.media-link.destroyed {
  color: var(--text-muted);
  cursor: default;
  font-weight: 400;
}

.media-link.destroyed:hover {
  opacity: 1;
  text-decoration: none;
}

/* === Thread title lock icon === */
.thread-title svg {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 6px;
  color: var(--accent-gold);
}

/* === Protected Media Viewer === */
.viewer-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  user-select: none;
  -webkit-user-select: none;
}

.viewer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  flex-shrink: 0;
}

.viewer-info {
  font-size: 13px;
  color: var(--accent-gold);
  font-weight: 600;
}

.viewer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.viewer-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: filter 0.3s;
}

.viewer-blurred .viewer-media {
  filter: blur(40px) brightness(0.3);
}

.viewer-media {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.3s;
}

.viewer-media img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

.viewer-media video {
  max-width: 100%;
  max-height: 80vh;
  outline: none;
}

.viewer-shield {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.viewer-warning {
  text-align: center;
  padding: 10px 16px;
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* === Anti-Copy === */
@media print {
  .viewer-modal {
    display: none !important;
  }
  .media-link {
    visibility: hidden;
  }
}

/* ========================================
   Landing Page + PASS Modal Styles
   ======================================== */

/* === Landing Page === */
.landing-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.landing-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 40px;
}

.landing-hero {
  margin-bottom: 36px;
}

.landing-shield {
  font-size: 56px;
  margin-bottom: 16px;
  animation: shieldPulse 2s ease-in-out infinite;
}

@keyframes shieldPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.landing-headline {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.text-green {
  color: var(--accent-green);
}

.landing-sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto;
}

.trust-indicators {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.trust-item {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  transition: background-color 0.2s;
}

.trust-item:hover {
  background-color: #2a2214;
}

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

.trust-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  font-weight: 600;
}

.btn-verify-cta {
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #181611;
  background: linear-gradient(135deg, #eead2b, #d4940a);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(238, 173, 43, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  margin-bottom: 16px;
}

.btn-verify-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(238, 173, 43, 0.5);
}

.btn-verify-cta:active {
  transform: translateY(0);
}

.landing-footer-text {
  font-size: 12px;
  color: var(--text-muted);
}

/* === PASS Modal === */
.pass-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pass-modal.hidden {
  display: none !important;
}

.pass-modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
}

.pass-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.pass-modal-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.pass-modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.pass-modal-close:hover {
  color: var(--text-primary);
}

.pass-step-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

/* === Carrier Grid === */
.carrier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.carrier-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 16px 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.carrier-btn:hover {
  border-color: var(--accent-gold);
  background: var(--bg-input);
}

.carrier-btn.selected {
  border-color: var(--accent-gold);
  background: rgba(238, 173, 43, 0.1);
  color: var(--accent-gold);
}

/* === PASS Form === */
.pass-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pass-input {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  font-family: inherit;
}

.pass-input:focus {
  border-color: var(--accent-gold);
}

.pass-input::placeholder {
  color: var(--text-muted);
}

.pass-agree {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
}

.pass-agree input[type="checkbox"] {
  accent-color: var(--accent-gold);
  width: 16px;
  height: 16px;
}

.pass-privacy-notice {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--accent-green);
  line-height: 1.4;
}

.btn-pass-request {
  background: var(--accent-gold);
  border: none;
  color: #181611;
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s;
}

.btn-pass-request:hover {
  opacity: 0.9;
}

.btn-pass-request:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* === OTP Input === */
.pass-timer {
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.pass-otp-input {
  display: block;
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 18px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: 8px;
  outline: none;
  font-family: inherit;
  margin-bottom: 16px;
}

.pass-otp-input:focus {
  border-color: var(--accent-gold);
}

.pass-otp-input::placeholder {
  color: var(--text-muted);
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 400;
}

.pass-otp-actions {
  display: flex;
  gap: 10px;
}

.btn-pass-verify {
  flex: 1;
  background: var(--accent-gold);
  border: none;
  color: #181611;
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}

.btn-pass-verify:hover {
  opacity: 0.9;
}

.btn-pass-resend {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}

.btn-pass-resend:hover {
  border-color: var(--accent-gold);
  color: var(--text-primary);
}

/* === PASS Result === */
.pass-processing {
  text-align: center;
  padding: 40px 0;
}

.pass-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border-color);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.pass-processing p {
  font-size: 15px;
  color: var(--text-secondary);
}

.pass-result {
  text-align: center;
  padding: 30px 0;
}

.pass-success {
  margin-bottom: 24px;
}

.pass-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.15);
  color: var(--accent-green);
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.pass-result-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-green);
}

.btn-pass-enter {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #eead2b, #d4940a);
  border: none;
  color: #181611;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(238, 173, 43, 0.35);
}

.btn-pass-enter:hover {
  opacity: 0.9;
}

.pass-fail-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: var(--accent-red);
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.pass-fail-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 24px;
}

.btn-pass-retry {
  display: block;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}

.btn-pass-retry:hover {
  border-color: var(--accent-gold);
}
