* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #FFFFFF;
  font-family: 'Inter', sans-serif;
  color: #111111;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 420px;
  text-align: left;
  padding: 0 24px;
}

h2 {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 20px;
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 32px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.link {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: #41AAFF;
  text-decoration: none;
  transition: all 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  width: fit-content;
}

    .link:hover {
      background: linear-gradient(
        90deg,
        #F79A3E,
        #FA8DDC,
        #64F2FF,
        #5985FF,
        #F98CDB,
        #F79A3D
      );
      background-size: 400% 400%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientShift 10s linear infinite;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      100% { background-position: 400% 50%; }
    }

.link:focus {
  outline: none;
}

.footer-note {
  font-size: 14px;
  color: #999999;
}

.click-square, .click-circle {
  width: 32px;
  height: 32px;
  background: #ECECEC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  position: fixed;
  cursor: pointer;
  z-index: 999; /* keep above other content */
}

/* Square: bottom-left corner with 40px padding */
.click-square {
  bottom: 40px;
  left: 40px;
  border-radius: 8px; /* rounded corners */
}

/* Circle: bottom-right corner with 40px padding */
.click-circle {
  bottom: 40px;
  right: 40px;
  border-radius: 50%; /* full circle */
}

/* Gradient hover effect */
.hover-gradient:hover {
  background: linear-gradient(
    90deg,
    #F79A3E,
    #FA8DDC,
    #64F2FF,
    #5985FF,
    #F98CDB,
    #F79A3D
  );
  background-size: 1500% 1500%;
  animation: gradientShift 20s linear infinite;
  color: white; /* keeps number visible */
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 1500% 50%; }
}


/* Responsive design */
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
  
  p {
    font-size: 14px;
  }
  
  .link {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  p {
    font-size: 14px;
  }
  
  .link {
    font-size: 14px;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .link {
    transition: none;
  }
}
