:root {
  --fg-size: 400px;
  --bg-size: 1.1125;
  
  --fg-base: 400; 
  --fg-scale: min(1, calc(var(--fg-size) / (1px * var(--fg-base))));
}

@media (max-width: 800px) {
  :root {
    --fg-size: 280px;
  }
}
@media (max-width: 320px) {
  :root {
    --fg-size: 200px;
  }
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100dvh;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative; 
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
  background: #ffffff;
}
#Info {
  max-width: var(--fg-size);
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  text-align: center;
  color: #333333;
}

h1 {
  font-size: calc(1.5rem * var(--fg-scale));
  margin-bottom: 20px;
}
p {
  font-size: calc(1.2rem * var(--fg-scale));
  line-height: 1.6;
  margin-bottom: 20px;
}

 /* ----------------------Foooter */ 
 footer {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  text-align: center;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  z-index: 198;
}

.Copyright {
  text-transform: uppercase;
  font-size: calc(0.65rem * var(--fg-scale));
  margin: 1.2rem;
  color: #00000094;
  user-select: none;
}

.PPolicy {
  font-size: calc(0.65rem * var(--fg-scale));
  color: #00000094;
  text-decoration: none;
}

.More {
  display: inline-block;
  opacity: 0.8;
  animation: GentleWiggle 3s infinite;
}
@keyframes GentleWiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(1deg); }
  75% { transform: rotate(-1deg); }
}

.More a {
  display: inline-flex;    
  align-items: center;    
  gap: 0.2rem;       
  text-decoration: none;    
  color: inherit;           
}

.More img {
  width: calc(2rem * var(--fg-scale));
  height: auto;
  display: block;
  image-rendering: crisp-edges;  
}
.More:hover {
  scale: 1.05;
}
.MoreText {
  font-size: calc(0.7rem * var(--fg-scale));
  font-weight: 600;
  vertical-align: middle;
  margin: 0; 
  user-select: none;
  text-decoration: none;
  background: linear-gradient(to right, #000000, #310000);
  background-size: 200% auto;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animated-text-gradient 5s linear infinite;
}

@keyframes animated-text-gradient {
  to { background-position: 200% center; }
}