/**
 * Security Platform Demo - Page Specific Styles
 * Uses brand CSS (base.css + components.css)
 */

/* Page-specific styles only */
.security-demo-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 2rem;
}

.demo-header-banner {
  background: rgba(211, 47, 47, 0.1);
  border: 1px solid rgba(211, 47, 47, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.demo-header-banner h1 {
  margin: 0 0 1rem 0;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-header-banner p {
  margin: 0;
  color: #b0b0b0;
  font-size: 1.125rem;
}

.security-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(211, 47, 47, 0.5);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #d32f2f 0%, #ff6b6b 100%);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.3);
}

.feature-card h3 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  color: white;
}

.feature-card p {
  margin: 0 0 1.5rem 0;
  color: #b0b0b0;
  line-height: 1.6;
}

.feature-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 24px;
  font-size: 0.875rem;
  color: #ffc107;
  font-weight: 600;
}

.coming-soon-banner {
  background: rgba(74, 144, 226, 0.15);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 800px;
  text-align: center;
}

.coming-soon-banner h2 {
  margin: 0 0 1rem 0;
  color: #4a90e2;
}

.coming-soon-banner p {
  margin: 0;
  color: #e0e0e0;
  line-height: 1.6;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.back-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #d32f2f;
  transform: translateX(-4px);
}

/* Session Data Display */
.session-data {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-row:last-child {
  border-bottom: none;
}

.data-label {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.data-value {
  font-size: 0.875rem;
  color: #e0e0e0;
  font-weight: 600;
  text-align: right;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-incident:hover {
  background: #d32f2f !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
}

.btn-incident:active {
  transform: translateY(0);
}
