.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 16, 43, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal {
  background: linear-gradient(135deg, rgba(18, 16, 43, 0.98), rgba(30, 27, 60, 0.98));
  border: 2px solid rgba(0, 255, 204, 0.3);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 255, 204, 0.2);
  animation: slideIn 0.4s ease;
  text-align: center;
}

@keyframes slideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-title {
  color: #00ffcc;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.cookie-text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #00ffcc 0%, #0099ff 100%);
  color: #12102b;
}

.cookie-btn-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 255, 204, 0.4);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.cookie-info {
  margin: 0;
  text-align: center;
}

.cookie-info small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* Responsywność */
@media (max-width: 600px) {
  .cookie-modal {
    padding: 2rem 1.5rem;
  }
  
  .cookie-title {
    font-size: 1.5rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    min-width: 100%;
  }
}