/* PWA Install Prompt */
.pwa-prompt {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  padding: 0 16px 16px;
  animation: pwaSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pwa-prompt--closing {
  animation: pwaSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pwaSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pwaSlideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.pwa-prompt__container {
  max-width: 400px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #1c1c1e, #2a2a2c);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  box-shadow:
    0 -4px 30px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.pwa-prompt__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.pwa-prompt__close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.pwa-prompt__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.pwa-prompt__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pwa-prompt__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pwa-prompt__title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pwa-prompt__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Proxima Nova', sans-serif;
}

.pwa-prompt__name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Proxima Nova', sans-serif;
}

.pwa-prompt__instructions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.pwa-prompt__step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pwa-prompt__step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a3a3c 0%, #4a4a4c 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Proxima Nova', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pwa-prompt__step-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  font-family: 'Proxima Nova', sans-serif;
}

.pwa-prompt__step-text strong {
  color: #ffffff;
  font-weight: 600;
}

.pwa-prompt__icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin: 0 2px;
}

.pwa-prompt__icon-share {
  color: #fff;
}

.pwa-prompt__icon-menu {
  color: rgba(255, 255, 255, 0.8);
}

.pwa-prompt__btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Proxima Nova', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #3a3a3c 0%, #4a4a4c 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pwa-prompt__btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #4a4a4c 0%, #5a5a5c 100%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.pwa-prompt__btn:active {
  transform: translateY(0);
}

/* Arrow pointing down for iOS Safari */
.pwa-prompt::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #2a2a2c;
}

/* ParticipantIcon - team icons from participants database */

.participant-icon {
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 2px;
}

/* Size presets */
.participant-icon--small {
  width: 16px;
  height: 16px;
}

.participant-icon--medium {
  width: 20px;
  height: 20px;
}

.participant-icon--large {
  width: 24px;
  height: 24px;
}

/* Prevent layout shift when icon fails to load */
.participant-icon:not([src]) {
  display: none;
}

/* Visible placeholder while loading or if icon unavailable */
.participant-icon-placeholder {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  flex-shrink: 0;
}

.participant-icon-placeholder.participant-icon--small {
  width: 16px;
  height: 16px;
}

.participant-icon-placeholder.participant-icon--medium {
  width: 20px;
  height: 20px;
}

.participant-icon-placeholder.participant-icon--large {
  width: 24px;
  height: 24px;
}

/* Doubles - two icons side by side */
.participant-icon-doubles {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.participant-icon-doubles--small {
  gap: 1px;
}

.participant-icon-doubles--medium {
  gap: 2px;
}

.participant-icon-doubles--large {
  gap: 2px;
}

.participant-icon-doubles .participant-icon--second {
  margin-left: -6px;
}

.participant-icon-doubles .participant-icon-placeholder.participant-icon--second {
  margin-left: -6px;
}

/* ParticipantInfo - displays extended info for Tennis/MMA participants */

.participant-info {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 10px;
  color: #8b9199;
  color: var(--text-secondary, #8b9199);
  margin-top: 1px;
  flex-wrap: nowrap;
  line-height: 1.2;
}

/* Country flag */
.participant-info-flag {
  width: 14px;
  height: 10px;
  object-fit: cover;
  border-radius: 1px;
  flex-shrink: 0;
}

/* Rank text (WTA: 59, ATP: 105) */
.participant-info-rank {
  font-weight: 500;
  color: #f5a623;
  color: var(--accent-color, #f5a623);
  white-space: nowrap;
}

/* Separator bullet */
.participant-info-sep {
  color: #6c757d;
  color: var(--text-muted, #6c757d);
  font-size: 8px;
}

/* Birthday and age */
.participant-info-age {
  white-space: nowrap;
  color: #6c757d;
  color: var(--text-tertiary, #6c757d);
}

/* Compact mode for tight spaces */
.participant-info.compact {
  font-size: 9px;
  gap: 3px;
}

.participant-info.compact .participant-info-flag {
  width: 12px;
  height: 8px;
}

/* Light theme adjustments */
[data-theme="light"] .participant-info {
  color: #666;
}

[data-theme="light"] .participant-info-rank {
  color: #b88a00;
}

[data-theme="light"] .participant-info-age {
  color: #888;
}

/* Doubles layout - two players side by side */
.participant-info-doubles {
  flex-wrap: wrap;
}

.participant-info-player {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.participant-info-doubles-sep {
  color: #6c757d;
  color: var(--text-muted, #6c757d);
  margin: 0 2px;
}

/* Compact doubles */
.participant-info-doubles.compact .participant-info-player {
  gap: 2px;
}

/* MyTransactionsPage.css - Flat Modern Design */

/* ============================================
   CONTAINER & PAGE LAYOUT
   ============================================ */

.tx-page {
  min-height: 100vh;
  padding: 0 2px;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   HEADER WITH BACK BUTTON
   ============================================ */

.tx-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--separator);
  z-index: 101;
  height: 44px;
  box-sizing: border-box;
}

.tx-back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 6px;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
  .tx-back-btn:hover {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
  }
}

.tx-back-btn:active {
  background-color: var(--bg-tertiary);
}

.tx-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================
   FILTERS SECTION - IDENTICAL TO MYBETSV2
   ============================================ */

.tx-filters-container {
  position: sticky;
  top: 44px;
  z-index: 100;
  background-color: var(--bg-secondary);
  padding: 10px 10px 12px 10px;
  margin-bottom: 8px;
}

/* Quick Filters */
.tx-quick-filters {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.tx-quick-filters button {
  flex: 1 1;
  padding: 8px 10px;
  border: none;
  border-radius: 6px;
  background-color: var(--bg-tertiary);
  color: var(--text-tertiary);
  font-family: 'Proxima Nova', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

@media (hover: hover) {
  .tx-quick-filters button:hover {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
  }
}

.tx-quick-filters button.tx-active {
  background-color: var(--accent-blue);
  color: var(--text-primary);
}

/* Advanced Filters */
.tx-advanced-filters {
  display: flex;
  gap: 6px;
  align-items: stretch;
}

.tx-filter-group {
  position: relative;
  flex: 1 1;
}

/* Date Input Styling */
.tx-filter-group.tx-date-filter {
  position: relative;
}

.tx-filter-group.tx-date-filter::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 24 24%27 stroke=%27%23888%27%3E%3Cpath stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z%27/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.tx-filter-group input[type="date"] {
  width: 100%;
  height: 100%;
  padding: 8px 10px 8px 30px;
  border: none;
  border-radius: 6px;
  background-color: var(--bg-tertiary);
  color: var(--text-tertiary);
  font-family: 'Proxima Nova', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

@media (hover: hover) {
  .tx-filter-group input[type="date"]:hover {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
  }
}

/* Date Range Display */
.tx-date-range-display {
  width: 100%;
  height: 100%;
  padding: 8px 10px 8px 30px;
  border: none;
  border-radius: 6px;
  background-color: var(--accent-blue-muted);
  color: var(--accent-blue);
  font-family: 'Proxima Nova', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* Hide default calendar icon */
.tx-filter-group input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Select Styling */
.tx-filter-group.tx-reason-filter {
  position: relative;
}

.tx-filter-group.tx-reason-filter::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 24 24%27 stroke=%27%23888%27%3E%3Cpath stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M19 9l-7 7-7-7%27/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.tx-filter-group select {
  width: 100%;
  height: 100%;
  padding: 8px 28px 8px 10px;
  border: none;
  border-radius: 6px;
  background-color: var(--bg-tertiary);
  color: var(--text-tertiary);
  font-family: 'Proxima Nova', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

@media (hover: hover) {
  .tx-filter-group select:hover {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
  }
}

.tx-filter-group input[type="date"]:focus,
.tx-filter-group select:focus {
  outline: none;
}

/* Clear Button */
.tx-clear-filters {
  padding: 8px 10px;
  border: none;
  border-radius: 6px;
  background-color: var(--bg-tertiary);
  color: var(--accent-red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

@media (hover: hover) {
  .tx-clear-filters:hover {
    background-color: var(--accent-red);
    color: var(--text-primary);
  }
}

.tx-clear-filters svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   TRANSACTION CARDS
   ============================================ */

.tx-container {
  padding: 0 4px;
}

.tx-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tx-card {
  background-color: var(--bg-secondary);
  border-radius: 8px;
  padding: 12px 14px;
}

.tx-card-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.tx-card-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
}

/* Transaction Icons */
.tx-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tx-icon-bet { color: #e74c3c; }
.tx-icon-won { color: #2ecc40; }
.tx-icon-deposit { color: #2ecc40; }
.tx-icon-withdrawal { color: #e74c3c; }
.tx-icon-bonus { color: #f0ad4e; }
.tx-icon-refund { color: #4a90e2; }
.tx-icon-casino { color: #f59e0b; }
.tx-icon-default { color: #888; }

.tx-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.tx-type {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.tx-type-bet_won { color: #2ecc40; }
.tx-type-deposit { color: #2ecc40; }
.tx-type-bonus { color: #f0ad4e; }
.tx-type-refund { color: #4a90e2; }
.tx-type-bet_placed { color: #e74c3c; }
.tx-type-withdrawal { color: #e74c3c; }
.tx-type-casino_session { color: #f59e0b; }

.tx-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}

.tx-bet-link {
  font-size: 12px;
  color: #6b8afd;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.tx-bet-link:hover {
  color: #8fa8ff;
}

.tx-status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  font-style: normal;
}

.tx-status-pending {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

.tx-status-approved {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.tx-status-rejected {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.tx-comment {
  font-size: 11px;
  color: var(--text-quaternary);
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.tx-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.tx-amount {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.tx-amount.tx-positive { color: #2ecc40; }
.tx-amount.tx-negative { color: #e74c3c; }

.tx-time {
  font-size: 11px;
  color: var(--text-tertiary);
}

.tx-card-balance {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--separator);
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tx-arrow {
  color: var(--text-primary);
  font-size: 12px;
}

/* ============================================
   EMPTY STATE
   ============================================ */

.tx-no-transactions {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-tertiary);
}

.tx-no-transactions svg {
  margin-bottom: 12px;
  opacity: 0.4;
}

.tx-no-transactions h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-tertiary);
  margin: 0;
}

/* ============================================
   SUMMARY SECTION
   ============================================ */

.tx-summary {
  background-color: var(--bg-secondary);
  border-radius: 8px;
  padding: 16px;
  margin: 16px 4px;
}

.tx-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
  gap: 12px;
}

.tx-summary-item {
  background-color: var(--bg-primary);
  border-radius: 6px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tx-summary-item.tx-summary-net {
  grid-column: 1 / -1;
  background-color: var(--bg-tertiary);
}

.tx-summary-label {
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.tx-summary-value {
  font-size: 18px;
  font-weight: 700;
}

.tx-summary-value.tx-positive { color: #2ecc40; }
.tx-summary-value.tx-negative { color: #e74c3c; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1023px) {
  .tx-header {
    top: 36px;
  }
  .tx-filters-container {
    top: 80px;
  }
}

@media (max-width: 768px) {
  .tx-page {
    padding: 0;
  }

  .tx-filters-container {
    padding: 8px 8px 10px 8px;
  }

  .tx-quick-filters {
    gap: 4px;
  }

  .tx-quick-filters button {
    padding: 5px 6px;
    font-size: 11px;
  }

  .tx-advanced-filters {
    gap: 4px;
  }

  .tx-filter-group input[type="date"] {
    padding: 5px 6px 5px 24px;
    font-size: 11px;
  }

  .tx-filter-group select {
    padding: 5px 22px 5px 6px;
    font-size: 11px;
  }

  .tx-date-range-display {
    padding: 5px 6px 5px 24px;
    font-size: 11px;
  }

  .tx-filter-group.tx-date-filter::before {
    left: 6px;
    width: 12px;
    height: 12px;
  }

  .tx-filter-group.tx-reason-filter::after {
    right: 6px;
    width: 8px;
    height: 8px;
  }

  .tx-clear-filters {
    padding: 5px 8px;
  }

  .tx-container {
    padding: 0 2px;
  }

  .tx-card {
    padding: 10px 12px;
  }

  .tx-icon {
    width: 20px;
    height: 20px;
  }

  .tx-type {
    font-size: 13px;
  }

  .tx-amount {
    font-size: 16px;
  }

  .tx-summary {
    margin: 12px 2px;
    padding: 12px;
  }

  .tx-summary-value {
    font-size: 16px;
  }
}

@media (min-width: 1025px) {
  .tx-page {
    max-width: 800px;
    margin: 0 auto;
  }

  .tx-quick-filters {
    max-width: 400px;
  }
}

/* Focus states */
.tx-quick-filters button:focus,
.tx-filter-group input:focus,
.tx-filter-group select:focus,
.tx-clear-filters:focus {
  outline: none;
}

/* Smooth transitions */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* PasswordSecurityPage.css */
.security-page {
  background: var(--bg-primary);
  padding-bottom: 80px;
}

.security-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.security-back svg {
  width: 24px;
  height: 24px;
}

.security-header h1 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.security-content {
  padding: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.security-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.security-card-header {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.security-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-card-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.security-card-header h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.security-card-header p {
  font-size: 13px;
  color: var(--text-tertiary);
  margin: 0;
}

.security-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 10px;
  margin-bottom: 20px;
  color: #22c55e;
  font-size: 14px;
}

.security-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.security-error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  margin-bottom: 20px;
  color: #ef4444;
  font-size: 14px;
}

.security-error svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.security-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.security-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.security-input-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.security-input-group input {
  background: #0d0d0e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}

.security-input-group input:focus {
  border-color: var(--accent-green);
}

.security-input-group input::placeholder {
  color: var(--text-quaternary);
}

.security-hint {
  font-size: 12px;
  color: var(--text-quaternary);
}

.security-submit {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 10px;
}

.security-submit:hover:not(:disabled) {
  opacity: 0.9;
}

.security-submit:active:not(:disabled) {
  transform: scale(0.98);
}

.security-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.security-info {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.security-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: #22c55e;
  margin: 0 0 12px;
}

.security-info ul {
  margin: 0;
  padding-left: 20px;
}

.security-info li {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.security-info li:last-child {
  margin-bottom: 0;
}

/* Mobile */
@media (max-width: 480px) {
  .security-content {
    padding: 16px;
  }

  .security-card {
    padding: 20px;
  }

  .security-card-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

