.version-card {
  padding: 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}
.version-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.version-icon-img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.verse-package-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.version-info {
  flex: 1;
}
.version-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}
.version-number {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.version-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--success);
  flex-shrink: 0;
  margin-left: auto;
  background: rgba(52, 211, 153, 0.1);
  padding: 6px 10px;
  border-radius: 20px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0;
}
.checklist-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-normal);
}
.checklist-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}
.checklist-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-hover);
  border-radius: var(--radius-sm);
}
.checklist-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text-primary);
}
.checklist-text p {
  font-size: 12px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}
.flow-box {
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin: 18px 0;
}
.flow-box h3 {
  margin-top: 0;
}
.info-box {
  padding: 14px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin: 14px 0;
}
.info-box h4 {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: var(--text-primary);
}
.info-box p {
  margin: 0;
  font-size: 12px;
}
.method-selector {
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 20px;
}
.method-recommendation {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--accent-primary);
  margin-bottom: 14px;
  font-weight: 500;
}
.recommend-icon {
  font-size: 12px;
}
.method-tabs {
  display: flex;
  gap: 10px;
}
.method-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  color: var(--text-secondary);
}
.method-tab:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}
.method-tab.active {
  background: rgba(167, 139, 250, 0.1);
  border-color: var(--accent-primary);
  color: var(--text-primary);
}
/* RAID button green glow - always visible */
.method-tab[data-method="raid"] {
  border-color: rgba(52, 211, 153, 0.4);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.25), 0 0 24px rgba(52, 211, 153, 0.1);
}
.method-tab[data-method="raid"]:hover {
  border-color: rgba(52, 211, 153, 0.6);
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.35), 0 0 32px rgba(52, 211, 153, 0.15);
}
.method-tab[data-method="raid"].active {
  background: rgba(52, 211, 153, 0.1);
  border-color: var(--success);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.25), 0 0 20px rgba(52, 211, 153, 0.1);
}
.method-tab-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.method-tab-label {
  font-weight: 500;
  font-size: 13px;
}
.method-content {
  display: none;
  animation: methodFadeIn 0.4s ease;
}
.method-content.active {
  display: block;
}
@keyframes methodFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.difficulty-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.difficulty-face {
  font-size: 28px;
  line-height: 1;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.difficulty-face.animating {
  animation: faceSwap 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes faceSwap {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(0.5) rotate(-10deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
.difficulty-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.difficulty-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}
.difficulty-sublabel {
  font-size: 11px;
  color: var(--text-muted);
}
.time-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-dark);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}
.time-icon {
  font-size: 12px;
}
.time-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}
.checklist-card {
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 18px 0;
}

.checklist-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.checklist-card-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.checklist-card-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--bg-hover);
}

.checklist-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 139, 250, 0.1);
  border-radius: var(--radius-md);
  font-size: 18px;
  flex-shrink: 0;
}

.checklist-card-content {
  flex: 1;
  min-width: 0;
}

.checklist-card-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.checklist-card-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cleaner-box {
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.cleaner-text {
  flex: 1;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.btn-cleaner {
  flex-shrink: 0;
  font-size: 12px;
  padding: 8px 16px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .checklist-card-grid {
      grid-template-columns: 1fr;
  }
  .cleaner-box {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
  }
}
.bios-path {
  padding: 14px 18px;
  margin: 10px 0;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--path-color);
  font-size: 13px;
  color: var(--text-secondary);
}

.bios-path .path-brand {
  color: var(--path-color);
  font-weight: 700;
}

.bios-path.path-asus {
  --path-color: #0087dc;
  background: linear-gradient(90deg, rgba(0, 135, 220, 0.08) 0%, var(--bg-elevated) 30%);
}
.bios-path.path-msi {
  --path-color: #ff0000;
  background: linear-gradient(90deg, rgba(255, 0, 0, 0.08) 0%, var(--bg-elevated) 30%);
}
.bios-path.path-gigabyte {
  --path-color: #ff8800;
  background: linear-gradient(90deg, rgba(255, 136, 0, 0.08) 0%, var(--bg-elevated) 30%);
}
.bios-path.path-asrock {
  --path-color: #00a651;
  background: linear-gradient(90deg, rgba(0, 166, 81, 0.08) 0%, var(--bg-elevated) 30%);
}
.bios-path.path-hp {
    --path-color: #0096d6;
    background: linear-gradient(90deg, rgba(0, 150, 214, 0.08) 0%, var(--bg-elevated) 30%);
}

.bios-save-note {
  font-size: 15px;
  margin: 20px 0;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

.checklist-card-row {
  display: flex;
  gap: 16px;
}

.checklist-card-row .checklist-card-item {
  flex: 1;
}

@media (max-width: 600px) {
  .checklist-card-row {
      flex-direction: column;
  }
}

/* VPN Cards */
.vpn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.vpn-card {
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-normal);
}

.vpn-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.vpn-logo-frame {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--bg-dark);
    margin-bottom: 14px;
    flex-shrink: 0;
}

.vpn-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vpn-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.vpn-features {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
    width: 100%;
}

.vpn-features li {
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
}

.vpn-btn {
    width: 100%;
}

.vpn-setup-btn {
    width: 100%;
    margin-top: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.vpn-setup-btn:hover {
    background: var(--bg-hover);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.vpn-setup-btn:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.15);
}

/* Verse VIP gold shine */
.text-vip {
    color: #fbbf24;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

/* Force Verse VIP line to stay on one line */
.verse-vip-line {
    white-space: nowrap;
}
.verse-vip-line .text-vip {
    display: inline;
}

/* VPN Card Brand Colors */
.vpn-card.brand-windscribe {
    border-color: rgba(59, 130, 246, 0.4);
}
.vpn-card.brand-windscribe:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.vpn-card.brand-ipvanish {
    border-color: rgba(34, 197, 94, 0.4);
}
.vpn-card.brand-ipvanish:hover {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.15);
}

.vpn-card.brand-mysterium {
    border-color: rgba(168, 85, 247, 0.4);
}
.vpn-card.brand-mysterium:hover {
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.15);
}

/* VPN Brand-specific buttons */
.vpn-card.brand-windscribe .vpn-btn {
    background: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.5);
}
.vpn-card.brand-windscribe .vpn-btn:hover {
    background: #2563eb;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.vpn-card.brand-ipvanish .vpn-btn {
    background: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.5);
}
.vpn-card.brand-ipvanish .vpn-btn:hover {
    background: #16a34a;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.vpn-card.brand-mysterium .vpn-btn {
    background: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.5);
}
.vpn-card.brand-mysterium .vpn-btn:hover {
    background: #9333ea;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

/* VPN Modal */
.vpn-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: 60px;
}

.vpn-modal.active {
    display: flex;
}

.vpn-modal-content {
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    max-width: 450px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.2s ease;
}

#vpn-modal-windscribe .vpn-modal-content {
    max-width: 380px;
}

#vpn-modal-ipvanish .vpn-modal-content,
#vpn-modal-mysterium .vpn-modal-content {
    max-width: 700px;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.vpn-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--glass-border);
}

.vpn-modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.vpn-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color var(--transition-fast);
}

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

.vpn-modal-body {
    padding: 20px;
}

.vpn-modal-body p {
    margin-bottom: 16px;
    font-size: 13px;
}

.vpn-modal-body .image-frame {
    margin: 0;
}

/* Fit IPVanish and Mysterium setup images to container */
#vpn-modal-ipvanish .image-frame img,
#vpn-modal-mysterium .image-frame img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* VPN next step visibility */
.vpn-fortnite-only {
    display: none;
}

.vpn-other-only {
    display: none;
}

body.game-fortnite .vpn-fortnite-only {
    display: flex;
}

body.game-other .vpn-other-only {
    display: flex;
}

@media (max-width: 900px) {
    .vpn-grid {
        grid-template-columns: 1fr;
    }
}

/* Intel RAID Compatibility Modal */
.intel-raid-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: 60px;
}

.intel-raid-modal.active {
    display: flex;
}

.intel-raid-modal-content {
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.2s ease;
}

.intel-raid-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--glass-border);
}

.intel-raid-modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.intel-raid-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color var(--transition-fast);
}

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

.intel-raid-modal-body {
    padding: 20px;
}

.intel-raid-modal-body p {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.6;
}

.intel-raid-options {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.intel-raid-option-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: 'Poppins', sans-serif;
}

.intel-raid-option-btn:hover {
    transform: translateY(-2px);
}

.intel-raid-option-btn.compatible:hover {
    border-color: var(--success);
    background: rgba(52, 211, 153, 0.1);
}

.intel-raid-option-btn.not-compatible:hover {
    border-color: var(--danger);
    background: rgba(248, 113, 113, 0.1);
}

.intel-raid-option-btn .option-icon {
    font-size: 24px;
}

.intel-raid-option-btn .option-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
}
