/* FOOTER */
.cc-footer {
  width: 100%;
  padding: 25px 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
}

.cc-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.cc-footer-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: 14px;
  opacity: 0.9;
}

.cc-footer-icons img {
  width: 32px;
  height: 32px;
  margin-left: 15px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cc-footer-icons img:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
}

/* BACK TO TOP */
.cc-back-to-top {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cc-back-to-top img {
  width: 32px;
  height: 32px;
}

.cc-back-to-top:hover {
  transform: scale(1.15);
}

/* DARK MODE */
body.dark-mode .cc-footer-text {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.8);
}

/* TICKER */
.cc-ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.cc-ticker-track {
  display: inline-block;
  animation: tickerScroll 25s linear infinite;
}

.cc-ticker span {
  font-family: 'Cinzel Decorative', serif;
  font-size: 16px;
  padding-left: 100%;
  display: inline-block;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

body.dark-mode .cc-ticker span {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.8);
}
