:root {
  --color-primary: #111827;
  --color-secondary: #1f2937;
  --color-accent: #00aaff;
  --color-success: #00cc66;
  --color-warning: #ffcc00;
  --color-danger: #ff3300;
  --color-text: #ffffff;
  --color-text-muted: #a8a8a8;
  --color-bg: #111827;
  --color-surface: #1f2937;
  --color-border: #202737;
  --color-border: color-mix(in srgb, var(--color-primary) 65%, var(--color-secondary) 35%);
  --color-hover: #1b2231;
  --color-hover: color-mix(in srgb, var(--color-secondary) 80%, var(--color-primary) 20%);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrapper {
  display: flex;
  flex: 1;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.ad-sidebar {
  position: sticky;
  top: 20px;
  width: 160px;
  height: 600px;
  margin: 2rem 1rem;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.ad-sidebar-left {
  order: 1;
}

.ad-sidebar-right {
  order: 3;
}

.ad-container {
  width: 160px;
  min-height: 600px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.ad-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  text-align: center;
  gap: 0.5rem;
  padding: 1rem;
}

.ad-placeholder i {
  font-size: 2rem;
  opacity: 0.5;
}

.main-content-wrapper {
  flex: 1;
  order: 2;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.page-header {
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
  color: white;
  padding: 0;
  border-bottom: 1px solid var(--color-border);
}

.header-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0.5;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 60%);
  top: -250px;
  left: -150px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-danger) 0%, transparent 60%);
  top: -150px;
  right: -100px;
  animation-delay: 7s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--color-warning) 0%, transparent 60%);
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -40px) scale(1.15);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.85);
  }
}

.header-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.header-text {
  text-align: center;
}

.header-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  line-height: 1.1;
}

.brand-cs {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-success) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  padding-right: 0.25rem;
  text-transform: uppercase;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.app-shell {
  width: 100%;
  padding: 2rem 1rem;
  flex: 1;
  background-color: var(--color-bg);
}

.app-shell > * {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-title i {
  color: var(--color-accent);
}

.stats-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-item {
  background: var(--color-secondary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.stat-content {
  flex: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
}

.recent-users-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.recent-user-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-secondary);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.recent-user-item:hover {
  background: var(--color-hover);
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.recent-user-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
  border: 2px solid var(--color-border);
}

.recent-user-name {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  font-size: 1rem;
  word-break: break-word;
}

.recent-user-time {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.card-subtitle {
  margin: -0.5rem 0 1rem 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.loading-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.lookup-form {
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-label {
  font-weight: 600;
  color: var(--color-text);
  font-size: 1rem;
}

.input-wrapper {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.form-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--color-secondary);
  color: var(--color-text);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0, 170, 255, 0.2);
}

.form-helper {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: -0.25rem;
}

.btn {
  padding: 1rem 1.75rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-primary {
  background: var(--color-accent);
  color: white;
}

.btn-primary:hover:not(:disabled) {
  background: #0099e6;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-continue {
  background: var(--color-success);
  color: white;
}

.btn-continue:hover:not(:disabled) {
  background: #00b359;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-report {
  background: var(--color-success);
  color: white;
}

.btn-report:hover:not(:disabled) {
  background: #00b359;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-cancel {
  background: var(--color-danger);
  color: white;
}

.btn-cancel:hover:not(:disabled) {
  background: #e62e00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feedback {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid;
  box-shadow: var(--shadow-sm);
}

.feedback p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feedback-success {
  border-left-color: var(--color-success);
  background: rgba(0, 204, 102, 0.1);
  color: #00cc66;
}

.feedback-error {
  border-left-color: var(--color-danger);
  background: rgba(255, 51, 0, 0.1);
  color: #ff3300;
}

.hidden {
  display: none;
}

.profile-container {
  padding: 1rem;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.profile-avatar {
  width: 128px;
  height: 128px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.profile-info {
  flex: 1;
}

.profile-name {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.profile-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.profile-link:hover {
  color: #0099e6;
  text-decoration: underline;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 2rem 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-secondary);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.stat-card .stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.stat-subtext {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.ban-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.ban-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-secondary);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.ban-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.ban-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  width: fit-content;
}

.badge-clean {
  background: rgba(0, 204, 102, 0.1);
  color: #00cc66;
}

.badge-banned {
  background: rgba(255, 51, 0, 0.1);
  color: #ff3300;
}

.badge-warn {
  background: rgba(255, 204, 0, 0.1);
  color: #ffcc00;
}

.badge-none {
  background: var(--color-secondary);
  color: var(--color-text-muted);
}

.ban-detail {
  font-size: 1rem;
  color: var(--color-text);
  margin: 0;
}

.report-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.page-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-primary);
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.donation-header {
  text-align: center;
  margin-bottom: 2rem;
  background: var(--color-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.donation-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.donation-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.crypto-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.crypto-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-success));
  opacity: 0;
  transition: var(--transition);
}

.crypto-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.crypto-item:hover::before {
  opacity: 1;
}

.crypto-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
  color: var(--color-accent);
  background: rgba(0, 170, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.crypto-item:hover .crypto-icon {
  transform: scale(1.1);
  background: rgba(0, 170, 255, 0.2);
}

.crypto-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.crypto-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0;
  text-align: center;
}

.crypto-address {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-family: "Courier New", monospace;
  color: var(--color-text);
  background: var(--color-primary);
  text-align: center;
  transition: var(--transition);
}

.crypto-address:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.2);
  background: var(--color-surface);
}

.copy-btn {
  padding: 0.875rem 1.5rem;
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
}

.copy-btn:hover {
  background: #0099e6;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.copy-btn svg {
  display: block;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-secondary);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--color-secondary);
  border: none;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.faq-question:hover {
  background: var(--color-hover);
}

.faq-question:focus {
  outline: none;
  background: var(--color-hover);
}

.faq-icon {
  color: var(--color-accent);
  transition: transform 0.3s ease;
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.faq-answer p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
  margin: 0.75rem 0 1rem 1.5rem;
  color: var(--color-text-muted);
}

.faq-answer li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.faq-answer strong {
  color: var(--color-text);
  font-weight: 600;
}

@media (max-width: 1400px) {
  .ad-sidebar {
    display: none;
  }

  .main-content-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    padding: 3rem 1rem;
    gap: 1.5rem;
  }

  .header-text h1 {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .app-shell {
    padding: 1rem;
  }

  .footer-content {
    padding: 2rem 1rem;
  }

  .card {
    padding: 1.25rem;
  }

  .stats-dashboard {
    grid-template-columns: 1fr;
  }

  .input-wrapper {
    flex-direction: column;
  }

  .form-input {
    min-width: 100%;
  }

  .profile-header {
    flex-direction: column;
    text-align: center;
  }

  .profile-name {
    font-size: 1.75rem;
  }

  .report-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-grid,
  .ban-grid {
    grid-template-columns: 1fr;
  }

  .crypto-grid {
    grid-template-columns: 1fr;
  }

  .recent-users-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .banned-players-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-text h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .stat-value {
    font-size: 1.75rem;
    word-break: break-all;
  }

  .profile-avatar {
    width: 96px;
    height: 96px;
  }

  .card {
    padding: 1rem;
  }

  .crypto-address {
    font-size: 0.75rem;
    word-break: break-all;
  }

  .stat-card .stat-value {
    font-size: 1.5rem;
    word-break: break-all;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-overlay.hidden {
  display: none;
}

.modal-container {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s ease;
  border: 1px solid var(--color-border);
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

.modal-body {
  padding: 1.5rem;
}

.report-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.report-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  background: var(--color-secondary);
}

.report-option:hover {
  border-color: var(--color-accent);
  background: var(--color-hover);
}

.report-option input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.report-option input[type="radio"]:checked ~ .option-text {
  color: var(--color-accent);
  font-weight: 600;
}

.report-option:has(input[type="radio"]:checked) {
  border-color: var(--color-accent);
  background: rgba(0, 170, 255, 0.1);
}

.option-text {
  flex: 1;
  color: var(--color-text);
  font-size: 1rem;
}

.modal-footer {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.modal-footer .btn {
  flex: 1;
}

@media (max-width: 768px) {
  .modal-container {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
  }
}

.disclaimer-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 1rem;
  text-align: center;
}

.disclaimer-footer p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
}
