/**
 * Gatekeeper Protection Styles
 */

/* Protected content indicator */
.gk-protected {
  position: relative;
}

/* Image protection wrapper */
.gk-img-protected {
  position: relative;
  display: inline-block;
}

.gk-img-protected::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

/* Warning toast */
.gk-warning {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1a1a1a;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 999999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: gkSlideIn 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Protection badge */
.gk-protection-badge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 9998;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  backdrop-filter: blur(10px);
}

.gk-protection-badge svg {
  width: 14px;
  height: 14px;
}

/* Block page styles */
.gk-block-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.gk-block-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 500px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gk-block-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.gk-block-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.gk-block-title {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.gk-block-message {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
}

/* Animations */
@keyframes gkSlideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes gkSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100px);
    opacity: 0;
  }
}

/* Print protection */
@media print {
  body {
    display: none !important;
  }
  
  body::after {
    content: 'Printing is disabled on this site.';
    display: block;
    padding: 50px;
    text-align: center;
    font-size: 24px;
    color: #333;
  }
}

/* Dev tools console styling (for intimidation) */
.gk-console-warning {
  color: red;
  font-size: 24px;
  font-weight: bold;
}
