/* Global Styles */
:root {
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(to bottom right, var(--gray-900), black, var(--gray-900));
  color: white;
  min-height: 100vh;
}

/* Header Styles */
.header {
  background-color: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--gray-800);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to right, white, var(--gray-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Button Styles */
.button {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.button-primary {
  background-color: var(--red-600);
  color: white;
}

.button-primary:hover {
  background-color: var(--red-700);
  box-shadow: 0 0 1rem rgba(220, 38, 38, 0.25);
}

.button-outline {
  background-color: transparent;
  border: 1px solid var(--red-600);
  color: var(--red-600);
}

.button-outline:hover {
  background-color: var(--red-600);
  color: white;
}

/* Main Content Styles */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  position: relative;
  z-index: 10;
}

.hero-section {
  text-align: center;
  margin-bottom: 4rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(to right, white, var(--gray-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-400);
  max-width: 48rem;
  margin: 0 auto 2rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background-color: rgba(17, 24, 39, 0.8);
  border: 1px solid var(--gray-800);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.5s;
}

.feature-card:hover {
  box-shadow: 0 0 2rem rgba(220, 38, 38, 0.1);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(220, 38, 38, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* Installation Page Specific Styles */
.step-card {
  background-color: rgba(17, 24, 39, 0.8);
  border: 1px solid var(--gray-800);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-number {
  background-color: var(--red-600);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: bold;
}

.code-block {
  background-color: rgba(3, 7, 18, 0.8);
  border: 1px solid var(--gray-700);
  border-radius: 0.5rem;
  padding: 1rem;
  overflow-x: auto;
  margin: 1rem 0;
}

/* Footer Styles */
.footer {
  background-color: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--gray-800);
  padding: 2rem 0;
  margin-top: 4rem;
  text-align: center;
  color: var(--gray-500);
}

/* Decorative Elements */
.bg-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(3rem);
  pointer-events: none;
}

.bg-decoration-1 {
  top: 25%;
  left: 25%;
  width: 18rem;
  height: 18rem;
  background-color: var(--red-600);
  animation: pulse 4s infinite;
}

.bg-decoration-2 {
  bottom: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background-color: var(--red-600);
  animation: pulse 4s infinite 1s;
}

@keyframes pulse {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.15; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .header-content {
    padding: 0 1rem;
  }
  
  .main-content {
    padding: 2rem 1rem;
  }
} 

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(8px);
  padding: 1.25rem;
  z-index: 9999;
  transition: transform 0.3s ease-in-out;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cookie-consent.show {
  transform: translateY(-100px);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gray-300);
  font-size: 0.95rem;
}

.cookie-text i {
  font-size: 1.5rem;
  color: var(--gray-400);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-consent button {
  min-width: 120px;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cookie-consent button.button-primary {
  background: linear-gradient(to right, #dc2626, #991b1b);
  color: white;
  border: none;
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

.cookie-consent button.button-primary:hover {
  background: linear-gradient(to right, #b91c1c, #7f1d1d);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(220, 38, 38, 0.3);
}

.cookie-consent button.button-secondary {
  background: rgba(31, 41, 55, 0.8);
  color: var(--gray-300);
  border: 1px solid rgba(75, 85, 99, 0.5);
  backdrop-filter: blur(8px);
}

.cookie-consent button.button-secondary:hover {
  background: rgba(31, 41, 55, 0.95);
  border-color: rgba(75, 85, 99, 0.8);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cookie-content {
      flex-direction: column;
      text-align: center;
  }

  .cookie-text {
      flex-direction: column;
  }

  .cookie-buttons {
      width: 100%;
      justify-content: center;
  }

  .cookie-consent button {
      flex: 1;
      max-width: 200px;
  }
}