/* Adblock Detector Modal Styles */
.adblock-detector-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.adblock-detector-overlay.show {
  display: flex;
}

.adblock-detector-modal {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid #e50914;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(229, 9, 20, 0.4);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.adblock-detector-icon {
  font-size: 80px;
  color: #e50914;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

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

.adblock-detector-title {
  color: #e50914;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.adblock-detector-message {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.adblock-detector-message strong {
  color: #FFD700;
}

.adblock-detector-downloads {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.adblock-detector-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.adblock-detector-download-btn.android {
  background: linear-gradient(135deg, #3DDC84, #2E7D32);
  color: #fff;
  border: none;
}

.adblock-detector-download-btn.ios {
  background: linear-gradient(135deg, #007AFF, #0055D4);
  color: #fff;
  border: none;
}

.adblock-detector-download-btn.electron {
  background: linear-gradient(135deg, #4285F4, #3367D6);
  color: #fff;
  border: none;
}

.adblock-detector-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.adblock-detector-premium {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1a0a00;
  border: none;
  padding: 16px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  transition: all 0.3s;
  text-decoration: none;
}

.adblock-detector-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.adblock-detector-bypass {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.adblock-detector-bypass-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  text-align: center;
}

.adblock-detector-bypass-input::placeholder {
  color: #888;
}

.adblock-detector-bypass-btn {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.adblock-detector-bypass-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.adblock-detector-bypass-error {
  color: #e50914;
  font-size: 12px;
  margin-top: 8px;
  display: none;
}

.adblock-detector-bypass-error.show {
  display: block;
}
