.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(70, 178, 228, 0.2);
}

.cookie-consent-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
  position: relative;
}

.cookie-consent-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-consent-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 300px;
}

.cookie-consent-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #46B2E4, #5bc0de);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(70, 178, 228, 0.3);
}

.cookie-consent-icon i {
  font-size: 1.5rem;
  color: white;
}

.cookie-consent-text {
  flex: 1;
}

.cookie-consent-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.cookie-consent-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}

.cookie-policy-link {
  color: #46B2E4;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.cookie-policy-link:hover {
  color: #5bc0de;
  text-decoration: none;
}

.cookie-policy-link i {
  font-size: 0.8rem;
  margin-left: 4px;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.cookie-consent-preferences {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-preference-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.cookie-checkbox:checked {
  background: linear-gradient(135deg, #46B2E4, #5bc0de);
  border-color: #46B2E4;
}

.cookie-checkbox:checked::after {
  content: "\F00C";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
}

.cookie-checkbox:hover {
  border-color: #46B2E4;
}

.cookie-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
  margin: 0;
}

.cookie-label:hover {
  color: white;
}

.cookie-label i {
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.cookie-label span {
  white-space: nowrap;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.cookie-btn i {
  font-size: 0.9rem;
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

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

.cookie-btn-primary {
  background: linear-gradient(135deg, #46B2E4, #5bc0de);
  color: white;
  box-shadow: 0 4px 15px rgba(70, 178, 228, 0.3);
}

.cookie-btn-primary:hover {
  background: linear-gradient(135deg, #3498db, #46B2E4);
  box-shadow: 0 6px 20px rgba(70, 178, 228, 0.4);
  color: white;
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-dismiss-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.cookie-dismiss-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.cookie-dismiss-btn i {
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .cookie-consent-container {
    padding: 20px;
  }

  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .cookie-consent-info {
    min-width: auto;
  }

  .cookie-consent-actions {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-consent-preferences {
    justify-content: center;
  }

  .cookie-consent-buttons {
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    justify-content: center;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .cookie-consent-icon {
    width: 50px;
    height: 50px;
  }

  .cookie-consent-icon i {
    font-size: 1.2rem;
  }

  .cookie-consent-title {
    font-size: 1.1rem;
  }

  .cookie-consent-description {
    font-size: 0.9rem;
  }

  .cookie-consent-preferences {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-consent-buttons {
    flex-direction: column;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(70, 178, 228, 0.3);
  }

  50% {
    box-shadow: 0 8px 25px rgba(70, 178, 228, 0.5);
  }
}

.cookie-consent-icon {
  animation: iconPulse 3s ease-in-out infinite;
}

