

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 14, 39, 0.98);
  border-top: 2px solid #00d9ff;
  padding: 20px;
  z-index: 999;
  backdrop-filter: blur(10px);
}

.cookie-banner.hidden {
  display: none !important;
}

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

.cookie-text {
  flex: 1;
  min-width: 0;
}

.cookie-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #e8ecf1;
  margin-bottom: 8px;
}

.cookie-text p {
  font-size: 0.9rem;
  color: #8b95a5;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .cookie-actions {
    justify-content: stretch;
  }
  
  .cookie-actions .btn {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: 16px;
  }
  
  .cookie-content {
    gap: 12px;
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .cookie-actions .btn {
    width: 100%;
  }
}

.cookie-customize-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 14, 39, 0.98);
  border-top: 2px solid #00d9ff;
  padding: 20px;
  z-index: 999;
  backdrop-filter: blur(10px);
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-customize-panel.hidden {
  display: none !important;
}

.cookie-customize-panel h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e8ecf1;
  margin-bottom: 20px;
}

.cookie-categories {
  max-width: 1200px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.cookie-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background-color: #0f1428;
  border: 1px solid #1a1f3a;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-checkbox:hover {
  border-color: #00d9ff;
}

.cookie-checkbox input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: #00d9ff;
}

.cookie-checkbox input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkbox-label {
  font-size: 0.95rem;
  color: #e8ecf1;
  line-height: 1.5;
}

.checkbox-label strong {
  color: #00d9ff;
}

.cookie-customize-actions {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .cookie-customize-actions {
    justify-content: stretch;
  }
  
  .cookie-customize-actions .btn {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .cookie-customize-actions {
    flex-direction: column;
  }
  
  .cookie-customize-actions .btn {
    width: 100%;
  }
  
  .cookie-categories {
    grid-template-columns: 1fr;
  }
}

.cookie-banner { color: #ffffff !important; }

.cookie-customize-panel { color: #ffffff !important; }
.cookie-checkbox { color: #ffffff !important; }
