@font-face {
    font-family: 'Ancient';
    src: url('/assets/files/fonts/Ancient.ttf') format('truetype');
}

body {
    font-family: 'Inter', sans-serif;
    background-image: url('/assets/files/img/backgrounds/4.gif');
    background-size: cover;
    background-position: center;
    color: var(--gray-900);
    background-size: cover;
}

#corner-gif {
  position: fixed;
  width: 256px;
  z-index: 9999;
  pointer-events: none;
}

#mute-toggle {
	  position: fixed;
	  top: 12px;
	  right: 12px;
	  width: 76px;
	  height: 76px;
	  background: transparent;
  	  border: none;
	  z-index: 99999;
	  padding: 0;
	  cursor: pointer;
    outline: none;
}

#mute-toggle:focus {
      outline: none;
      box-shadow: none;
}

#mute-toggle img {
  width: 55%;
  height: 55%;
  object-fit: contain;
  pointer-events: none; 
}


:root {
    /* Shades of Gray */
    --gray-100: rgba(31, 31, 31, 0.1);
    --gray-200: rgba(41, 41, 41, 0.2);
    --gray-300: rgba(51, 51, 51, 0.3);
    --gray-400: rgba(61, 61, 61, 0.4);
    --gray-500: rgba(71, 71, 71, 0.5);
    --gray-600: rgba(81, 81, 81, 0.6);
    --gray-700: rgba(91, 91, 91, 0.7);
    --gray-800: rgba(101, 101, 101, 0.8);
    --gray-900: rgba(111, 111, 111, 0.9);
    --gray-950: rgba(121, 121, 121, 0.95);

    /* Green-Cyan Contrast Colors */
    --cyan-100: #b7f0ea;
    --cyan-200: #97e4df;
    --cyan-300: #77d9d4;
    --cyan-400: #57cec9;
    --cyan-500: #38c3bf;
    --cyan-600: #2ba59f;
    --cyan-700: #218781;
    --cyan-800: #176963;
    --cyan-900: #0d4b45;
    --cyan-950: #052e28;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(24px) brightness(70%) contrast(80%);
    z-index: -1;
}

.description-box {
    background-color: var(--gray-300);
    box-shadow: 0 4px 6px var(--gray-800);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.orbit-container {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.orbit-center {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-image: url('/assets/files/img/gif/eye.gif');
    background-size: cover;
}

.orbit-button {
    position: absolute;
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
    text-align: center;
    background-color: var(--gray-600);
    color: var(--cyan-100);
    border-radius: 8px;
    transition: background 0.3s;
    white-space: nowrap;
    animation: pentagram 10s infinite;
    opacity: 0.85;
}

.orbit-button:hover {
    background-color: var(--gray-700);
    color: var(--cyan-400);
}

@keyframes pentagram {
    0% { transform: translate(-114px, -186px); }
    20% { transform: translate(114px, -186px); }
    40% { transform: translate(184px, 60px); }
    60% { transform: translate(0px, 186px); }
    80% { transform: translate(-184px, 60px); }
    100% { transform: translate(-114px, -186px); }
}

