body {
  margin: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #0b0f1a, #1a0f2f);
  font: bold 14px/16px Arial, sans-serif;
  color: silver;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

a {
  margin: 0 5px;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  background: linear-gradient(to right, #0000ff, #ff0000);
  padding: 10px;
}

i.fa {
  color: #12161c;
  font-size: 20px;
  line-height: 20px;
}

#loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 55px;
  height: 55px;
  display: block;
  background-image: linear-gradient(to right, #ff0000, #0000ff);
  animation: rotateLoader 3s ease-in-out infinite;
  z-index: 9999;
}

@keyframes rotateLoader {
  0% { transform: perspective(120px) rotateX(0) rotateY(0); }
  25% { transform: perspective(120px) rotateX(-180deg) rotateY(0); }
  50% { transform: perspective(120px) rotateX(-180deg) rotateY(-180deg); }
  75% { transform: perspective(120px) rotateX(0) rotateY(-180deg); }
  100% { transform: perspective(120px) rotateX(0) rotateY(-360deg); }
}

#myDiv > div:nth-of-type(2) {
  margin-bottom: 10px;
}

#logo {
  font-family: Baskerville, Palatino, sans-serif;
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  text-align: center;
  margin-top: 30px;
  background-color: transparent;
}

#footer {
  margin: auto;
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  width: 200px;
  color: #ffffff;
  font: bold 11px/13px arial, helvetica, sans-serif;
  clear: both;
  text-align: center;
  padding: 6px;
}

.animated-text {
  position: absolute;
  top: 59%;
  left: 0;
  width: auto;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  animation: moveText 20s linear infinite;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black,
               -1px 1px 0 black, 1px 1px 0 black;
}

@keyframes moveText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

#image-container {
  position: relative;
  width: 250px;
  height: 300px;
  margin: 0 auto;
  overflow: hidden;
}

#logo img {
  width: 100%;
  height: auto;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A1326;
  color: #F5F5F5;
  font-size: 13px;
  font-family: Arial, sans-serif;
  padding: 1rem 1.5rem;
  display: none; 
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  z-index: 9999; 
  text-align: left;
  line-height: 1.4;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black,
               -1px 1px 0 black, 1px 1px 0 black;
  overflow: visible;
  pointer-events: auto;
}

#cookieNotice::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent 0%,
    #2D0092 20%,
    #7A2CFF 50%,
    #2D0092 80%,
    transparent 100%
  );

  background-size: 200% 100%;
  animation: rotateLine 45s linear infinite;
  filter: drop-shadow(0 0 6px #7A2CFF);
}

@keyframes rotateLine {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

#cookieNotice span {
  flex: 1 1 auto;
  min-width: 200px;
}

#cookieAccept {
  background: linear-gradient(to right, #ff0000, #0000ff);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
