/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a1a2e 50%, #16213e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 60px 0 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  min-width: 200px;
  flex: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  margin-top: 0;
  padding-top: 0;
}

.footer-logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.footer-logo-image {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-decoration: none;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 14px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  margin-top: 0;
  padding-top: 0;
  line-height: 1;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-social img {
  width: 20px;
  height: 20px;
}

.footer-download {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-store-badge {
  height: 40px;
  transition: transform 0.3s ease;
}

.footer-store-badge:hover {
  transform: scale(1.05);
}

.app-store-coming-soon-footer {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 0;
  margin-top: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
}

.app-store-coming-soon-footer:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.coming-soon-text-footer {
  font-size: 14px;
  font-weight: 600;
  opacity: .9;
  color: #fff;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.4);
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 0 30px;
  }
  
  .footer-logo {
    gap: 8px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .footer-content {
    flex-direction: column;
    gap: 15px;
  }
}

/* Cookie Consent Banner (global) */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
}
.cookie-banner-content {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 300px; }
.cookie-banner-text p { margin: 0; font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.9); }
.cookie-banner-text a { color: #4ecdc4; text-decoration: none; font-weight: 500; transition: color 0.2s ease; }
.cookie-banner-text a:hover { color: #ff6b6b; }
.cookie-banner-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btn { padding: 10px 20px; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; min-width: 100px; }
.cookie-btn-accept { background: linear-gradient(45deg, #ff6b6b, #4ecdc4); color: #fff; box-shadow: 0 2px 8px rgba(255,107,107,0.3); }
.cookie-btn-accept:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,107,107,0.4); }
.cookie-btn-reject { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn-reject:hover { background: rgba(255,255,255,0.15); transform: translateY(-1px); }
.cookie-btn-more { background: transparent; color: #4ecdc4; border: 1px solid #4ecdc4; }
.cookie-btn-more:hover { background: rgba(78,205,196,0.1); transform: translateY(-1px); }
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (max-width: 768px) {
  .cookie-banner { padding: 16px; }
  .cookie-banner-content { flex-direction: column; gap: 16px; text-align: center; }
  .cookie-banner-text { min-width: auto; width: 100%; }
  .cookie-banner-buttons { justify-content: center; width: 100%; }
  .cookie-btn { flex: 1; min-width: 80px; padding: 12px 16px; }
}
@media (max-width: 480px) {
  .cookie-banner { padding: 12px; }
  .cookie-banner-buttons { flex-direction: column; gap: 8px; }
  .cookie-btn { width: 100%; padding: 14px 16px; }
}
