/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(26, 57, 123, 0.95) 0%, rgba(34, 40, 49, 0.95) 100%);
  backdrop-filter: blur(15px);
  color: white;
  padding: 1.5rem 2rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #ff9900;
  box-shadow: 0 -8px 32px rgba(26, 57, 123, 0.3);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h3 {
  color: #ff9900;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cookie-text p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-btn-primary {
  background: #ff9900;
  color: white;
}

.cookie-btn-primary:hover {
  background: #e68a00;
  transform: translateY(-2px);
}

.cookie-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff9900;
  transform: translateY(-2px);
}

.cookie-icon {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 1rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    min-width: auto;
  }
  
  .cookie-text h3 {
    font-size: 1.1rem;
  }
  
  .cookie-text p {
    font-size: 0.9rem;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 0.8rem;
  }
  
  .cookie-text h3 {
    font-size: 1rem;
  }
  
  .cookie-text p {
    font-size: 0.85rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cookie-btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem;
  }
} 