/* ==========================================================
   MineTron - Simple, Decent & Colorful Light Mode Theme
   ========================================================== */

:root {
  --primary-color: #2563eb;
  --secondary-color: #3b82f6;
  --accent-color: #10b981;
  --bg-dark: #f8fafc;
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --gold-color: #f59e0b;
  --purple-color: #8b5cf6;
  --danger-color: #ef4444;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Standard Container Width (Strict 1320px Max-Width) */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px !important;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1350px !important;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1500px !important;
  }
}

a,
a:hover,
a:focus,
a:active,
.btn,
.btn:hover,
.btn:focus,
a.btn,
a.btn:hover,
.dropdown-item,
.dropdown-item:hover,
.dropdown-item:focus {
  text-decoration: none !important;
}

a {
  color: var(--primary-color);
  text-decoration: none !important;
  transition: color 0.15s ease, background-color 0.15s ease;
}

a:hover {
  color: #1d4ed8;
  text-decoration: none !important;
}

.dropdown-item {
  color: var(--text-primary);
  text-decoration: none !important;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #f1f5f9;
  color: var(--primary-color);
  text-decoration: none !important;
}

/* Navbar */
.navbar-custom {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-color) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.45rem 0.8rem !important;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
  background: #eff6ff;
}

/* Simple Decent Cards */
.card-custom {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.card-custom .card-header-custom {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--card-border);
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

.card-custom .card-body-custom {
  padding: 1.25rem;
}

/* Colorful Stat Widgets */
.stat-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #dbeafe;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.stat-icon.accent {
  background: #d1fae5;
  color: #059669;
}

.stat-icon.gold {
  background: #fef3c7;
  color: #d97706;
}

.stat-icon.purple {
  background: #ede9fe;
  color: #7c3aed;
}

.stat-icon.danger {
  background: #fee2e2;
  color: #dc2626;
}

.stat-info .stat-label {
  font-size: clamp(0.62rem, 1.8vw, 0.76rem);
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 0.12rem;
  line-height: 1.2;
}

.stat-info .stat-value {
  font-size: clamp(0.85rem, 2.8vw, 1.35rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
}

/* Home Page Quick Stats Grid Dynamic Mobile Adaptation */
.home-stats-grid .stat-widget {
  min-height: 48px;
  padding: 0.35rem 0.65rem;
  gap: 0.55rem;
}

.home-stats-grid .stat-icon {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  font-size: 0.95rem !important;
  border-radius: 7px !important;
}

.home-stats-grid .stat-info {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.home-stats-grid .stat-label {
  font-size: 0.68rem;
  margin-bottom: 0.05rem;
  line-height: 1.15;
}

.home-stats-grid .stat-value {
  font-size: clamp(0.82rem, 1.8vw, 1.05rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}

.home-stats-grid .stat-value small {
  font-size: clamp(0.58rem, 1.5vw, 0.70rem) !important;
}

@media (max-width: 767.98px) {
  .stat-widget,
  .home-stats-grid .stat-widget {
    padding: 0.55rem 0.55rem;
    gap: 0.45rem;
    min-height: 58px;
  }

  .stat-icon,
  .home-stats-grid .stat-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    font-size: 0.95rem !important;
    border-radius: 7px !important;
  }

  .stat-info,
  .home-stats-grid .stat-info {
    min-width: 0;
    overflow: hidden;
    flex: 1;
  }

  .stat-info .stat-label,
  .home-stats-grid .stat-label {
    font-size: clamp(0.58rem, 2.2vw, 0.68rem) !important;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.1rem;
  }

  .stat-info .stat-value,
  .home-stats-grid .stat-value {
    font-size: clamp(0.72rem, 3.5vw, 0.98rem) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.15;
  }

  .stat-info .stat-value small,
  .home-stats-grid .stat-value small {
    font-size: clamp(0.52rem, 1.8vw, 0.68rem) !important;
  }
}

@media (max-width: 380px) {
  .stat-widget,
  .home-stats-grid .stat-widget {
    padding: 0.45rem 0.45rem;
    gap: 0.35rem;
  }

  .stat-icon,
  .home-stats-grid .stat-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    font-size: 0.85rem !important;
  }

  .stat-info .stat-value,
  .home-stats-grid .stat-value {
    font-size: clamp(0.68rem, 3.4vw, 0.88rem) !important;
  }
}

/* Simple Decent Miner Box (No Animations, Clean & Colorful) */
.mining-rig-box {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem;
  text-align: center;
}

.mining-rig-box.offline {
  background: #fffbeb;
  border-color: #fde68a;
}

.mining-pulsar {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #16a34a;
}

.mining-pulsar.offline {
  border-color: #f59e0b;
  color: #d97706;
}

/* Buttons */
.btn-primary-custom,
.btn-secondary-custom,
.btn-info-custom,
.btn-success-custom {
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  gap: 0.4rem;
  text-decoration: none !important;
  line-height: 1.4;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary-custom {
  background: var(--primary-color, #2563eb);
  color: #ffffff !important;
  border: 1px solid var(--primary-color, #2563eb);
}

.btn-primary-custom:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #ffffff !important;
  text-decoration: none !important;
}

.btn-primary-custom:disabled,
.btn-primary-custom[disabled] {
  opacity: 0.65 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
  background: var(--primary-color, #2563eb) !important;
  border-color: var(--primary-color, #2563eb) !important;
  color: #ffffff !important;
}

.btn-secondary-custom {
  background: #ffffff;
  color: var(--text-primary) !important;
  border: 1px solid #cbd5e1;
}

.btn-secondary-custom:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: var(--text-primary) !important;
  text-decoration: none !important;
}

.btn-info-custom {
  background: #0ea5e9;
  color: #ffffff !important;
  border: 1px solid #0ea5e9;
}

.btn-info-custom:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff !important;
  text-decoration: none !important;
}

.btn-success-custom {
  background: #10b981;
  color: #ffffff !important;
  border: 1px solid #10b981;
}

.btn-success-custom:hover {
  background: #059669;
  border-color: #059669;
  color: #ffffff !important;
  text-decoration: none !important;
}

.btn-primary-custom.btn-sm,
.btn-secondary-custom.btn-sm,
.btn-info-custom.btn-sm,
.btn-success-custom.btn-sm,
.btn.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  line-height: 1.35;
  text-decoration: none !important;
}

.btn:hover,
a.btn:hover {
  text-decoration: none !important;
}

/* Form Controls */
.form-control-custom,
.form-select-custom {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
}

.form-control-custom:focus,
.form-select-custom:focus {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  color: var(--text-primary);
  outline: none;
}

/* Colorful Badges */
.badge-custom {
  padding: 0.35rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
}

.badge-success-custom {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.badge-info-custom {
  background: #dbeafe;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.badge-warning-custom {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
}

.badge-purple-custom {
  background: #ede9fe;
  color: #6d28d9;
  border: 1px solid #ddd6fe;
}

/* Tables */
.table-custom {
  width: 100%;
  color: var(--text-primary);
  margin-bottom: 0;
}

.table-custom th {
  background: #f8fafc;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.table-custom td {
  padding: 0.85rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
}

.table-custom tr:hover td {
  background: #f8fafc;
}

/* Mining Packages */
.package-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.package-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.package-badge {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.package-hashrate {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0.5rem 0 0.2rem;
}

.package-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.75rem;
}

/* Progress bar */
.progress-custom {
  background: #e2e8f0;
  border-radius: 20px;
  height: 10px;
  overflow: hidden;
}

.progress-custom .progress-bar {
  background: #2563eb;
}

/* Footer */
footer {
  margin-top: auto;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 1.5rem 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Admin Sidebar & Layout */
.admin-layout {
  display: flex;
  min-height: calc(100vh - 62px);
}

.admin-sidebar {
  width: 275px;
  background: var(--sidebar-bg, #f1f5f9);
  border-right: 1px solid var(--card-border, #e2e8f0);
  padding: 1.1rem 0.85rem 3.5rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 62px);
  position: sticky;
  top: 62px;
  overflow-y: auto;
  scrollbar-width: thin;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-secondary, #64748b);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm, 6px);
  margin-bottom: 0.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none !important;
  transition: all 0.15s ease-in-out;
}

.admin-nav-item i {
  width: 20px;
  text-align: center;
  font-size: 1rem;
}

.admin-nav-item:hover {
  color: var(--primary-color, #2563eb);
  background: #eff6ff;
  font-weight: 600;
}

.admin-nav-item.active {
  color: var(--primary-color, #2563eb);
  background: #dbeafe;
  font-weight: 700;
  border-left: 3px solid var(--primary-color, #2563eb);
}

.admin-content {
  flex: 1;
  padding: 1.75rem;
  background: var(--bg-dark, #f8fafc);
  min-width: 0;
}

@media (max-width: 991.98px) {
  .admin-layout {
    flex-direction: column;
    min-height: auto;
  }

  .admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    width: 290px;
    max-width: 85vw;
    z-index: 1055;
    background: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem 3.5rem;
    border-right: 1px solid #e2e8f0;
  }

  .admin-sidebar.show {
    transform: translateX(0) !important;
  }

  .admin-content {
    padding: 1.25rem 0.85rem;
    width: 100%;
    min-width: 0;
  }
}

/* ==============================================
   USER SIDEBAR LAYOUT
   ============================================== */
.user-layout {
  display: flex;
  min-height: calc(100vh - 62px);
}

.user-sidebar {
  width: 285px;
  background: var(--sidebar-bg, #f1f5f9);
  border-right: 1px solid var(--card-border, #e2e8f0);
  padding: 1rem 0.85rem 2.5rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: calc(100vh - 62px);
  position: sticky;
  top: 62px;
  overflow-y: auto;
  scrollbar-width: thin;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.5rem 0.75rem;
  border-bottom: 1px solid var(--card-border, #e2e8f0);
  margin-bottom: 0.75rem;
}

.user-avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-color, #2563eb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.user-sidebar-info {
  overflow: hidden;
}

.user-sidebar-balances {
  background: #ffffff;
  border: 1px solid var(--card-border, #e2e8f0);
  border-radius: var(--radius-sm, 6px);
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.75rem;
}

.sidebar-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.32rem 0;
  font-size: 0.83rem;
  border-bottom: 1px solid #f1f5f9;
  gap: 0.5rem;
}

.sidebar-balance-row:last-child {
  border-bottom: none;
}

.sidebar-balance-label {
  color: var(--text-secondary, #64748b);
  white-space: nowrap;
  font-size: 0.82rem;
}

.sidebar-balance-value {
  font-size: 0.83rem;
  white-space: nowrap;
  text-align: right;
}

.user-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.user-nav-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary, #64748b);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm, 6px);
  margin-bottom: 0.2rem;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none !important;
}

.user-nav-item:hover {
  color: var(--primary-color, #2563eb);
  background: #eff6ff;
  font-weight: 600;
}

.user-nav-item.active {
  color: var(--primary-color, #2563eb);
  background: #dbeafe;
  font-weight: 700;
  border-left: 3px solid var(--primary-color, #2563eb);
}

.user-main-content {
  flex: 1;
  padding: 1.5rem;
  background: var(--bg-dark, #f8fafc);
  min-width: 0;
}

.user-main-content>.container {
  max-width: 1320px !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.user-main-content>.container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Nav pills in settings */
.nav-pills .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
  background: var(--primary-color, #2563eb);
  color: #fff !important;
}

/* Mining balance counter style */
.mining-balance-display {
  font-family: 'Courier New', monospace;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 1px;
}

/* Claim info badge */
.claim-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.claim-info-badge.unlocked {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.claim-info-badge.locked {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #9a3412;
}

/* Responsive user sidebar */
@media (max-width: 991.98px) {
  .user-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    width: 290px;
    max-width: 85vw;
    z-index: 1050;
    background: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem 3.5rem;
    border-right: 1px solid var(--card-border, #e2e8f0);
  }

  .user-sidebar.show {
    transform: translateX(0) !important;
  }

  .sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .sidebar-backdrop.show {
    opacity: 1;
    visibility: visible;
  }

  .user-sidebar-balances {
    display: block !important;
    background: #f8fafc;
  }

  .user-main-content {
    padding: 1.25rem 0.75rem;
    width: 100%;
  }
}

/* Today's Top Miner Flashing Alert Banner */
.top-miner-flash-banner {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fef9c3 100%);
  border: 1.5px solid #f59e0b;
  border-radius: var(--radius-md, 10px);
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
  position: relative;
  overflow: hidden;
  animation: flash-border 2.5s infinite ease-in-out;
}

@keyframes flash-border {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
  }

  50% {
    box-shadow: 0 0 22px rgba(245, 158, 11, 0.45);
    border-color: #d97706;
  }
}

.top-miner-crown-pulse {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #f59e0b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
  animation: crown-bounce 2s infinite ease-in-out;
}

@keyframes crown-bounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08) rotate(3deg);
  }
}

.flash-live-badge {
  background: #fef08a !important;
  color: #854d0e !important;
  border: 1px solid #facc15;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
}

.blink-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: blink-anim 1s infinite;
}

@keyframes blink-anim {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

/* ========================================================================= */
/* Community Poll Custom Radio Cards & Vibrant Styling */
/* ========================================================================= */
.poll-option-label {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  color: #f8fafc;
}

.poll-option-label:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(56, 189, 248, 0.5) !important;
  transform: translateY(-1px);
}

.poll-option-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  margin: 0;
}

.poll-custom-radio {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid #64748b;
  background: rgba(15, 23, 42, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
}

.poll-radio-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #38bdf8;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(0);
}

.poll-option-label:has(.poll-option-radio:checked),
.poll-option-label.active {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%), rgba(15, 23, 42, 0.8) !important;
  border-color: #38bdf8 !important;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.35) !important;
}

.poll-option-label:has(.poll-option-radio:checked) .poll-custom-radio,
.poll-option-label.active .poll-custom-radio {
  border-color: #38bdf8;
  background: #0284c7;
}

.poll-option-label:has(.poll-option-radio:checked) .poll-radio-dot,
.poll-option-label.active .poll-radio-dot {
  background: #ffffff;
  transform: scale(1);
}

.poll-option-label:has(.poll-option-radio:checked) .poll-option-text,
.poll-option-label.active .poll-option-text {
  color: #ffffff !important;
  font-weight: 700 !important;
}