/**
 * ========================================
 * COOKIE CONSENT BANNER STYLES
 * ========================================
 */

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(30, 30, 30, 0.98));
  backdrop-filter: blur(10px);
  border-top: 2px solid #ffd700;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}

#cookie-consent-banner.show {
  transform: translateY(0);
}

#cookie-consent-banner.hide {
  transform: translateY(100%);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 2.5em;
  color: #ffd700;
  animation: cookiePulse 2s infinite;
}

@keyframes cookiePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text h4 {
  color: #ffd700;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3em;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-text p {
  color: #ccc;
  font-size: 0.95em;
  margin: 0;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn i {
  font-size: 1.1em;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, #ffd700, #ffd700);
  color: white;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.cookie-btn.decline {
  background: linear-gradient(135deg, #6c757d, #5a6268);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.cookie-btn.decline:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-icon {
    font-size: 2em;
  }

  .cookie-text h4 {
    font-size: 1.1em;
  }

  .cookie-text p {
    font-size: 0.85em;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    justify-content: center;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  #cookie-consent-banner {
    padding: 15px;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }
}