:root {
  --minimalis-red: #fb2c36;
  --minimalis-dark: #121212;
  --minimalis-dark-lighter: #1e1e1e;
  --minimalis-text: #f5f5f5;
}

.minimalis-fun-body {
  background: url("https://images.unsplash.com/photo-1523955248191-0841a01f29aa?q=80&w=1960&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover fixed;
  color: #fff;
  text-align: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  overflow-x: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
}

.minimalis-fun-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.minimalis-message {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.minimalis-message h1 {
  font-size: 4rem;
  margin: 0;
  background: linear-gradient(45deg, #fb2c36, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.minimalis-message p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 1.5rem 0;
  color: #e0e0e0;
}

.minimalis-button {
  background: linear-gradient(45deg, #fb2c36, #ff9800);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  margin: 1.5rem;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(251, 44, 54, 0.3);
  border: 2px solid transparent;
}

.minimalis-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(251, 44, 54, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.minimalis-easter-egg {
  opacity: 0;
  font-size: 0.9em;
  margin-top: 2rem;
  color: #ff9800;
  transition: opacity 0.3s ease;
  cursor: pointer;
  position: relative;
}

.minimalis-easter-egg:hover {
  opacity: 1;
}

.minimalis-message img {
  max-width: 300px;
  margin: 2rem auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.minimalis-message img:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .minimalis-message h1 {
    font-size: 3rem;
  }

  .minimalis-message p {
    font-size: 1.2rem;
  }

  .minimalis-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .minimalis-message img {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .minimalis-message h1 {
    font-size: 2.5rem;
  }

  .minimalis-message p {
    font-size: 1rem;
  }

  .minimalis-button {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
  }

  .minimalis-message img {
    max-width: 200px;
  }
}

/* Animation for the sneaky cat */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

.minimalis-message img {
  animation: float 3s ease-in-out infinite;
}

/* Maintenance mode styles */
.maintenance-mode .minimalis-message {
}

.maintenance-mode .minimalis-message h1 {
}

/* Animation keyframes */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Apply animations */
.minimalis-message {
  animation: float 3s ease-in-out infinite;
}

.shake {
  animation: shake 0.5s ease-in-out;
}

.rotate {
  animation: rotate 1s linear;
}

/* Mobile styles */
.minimalis-mobile-container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.minimalis-mobile-content {
  max-width: 90%;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.minimalis-mobile-content h1 {
  color: #fd4c5f;
  margin-bottom: 20px;
}

.minimalis-mobile-content p {
  margin-bottom: 30px;
  line-height: 1.6;
}

.minimalis-mobile-button {
  display: inline-block;
  background-color: #fd4c5f;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.minimalis-mobile-button:hover {
  background-color: #e63e50;
}

/* Maintenance mode styles */
.minimalis-maintenance-body {
  background: url("https://images.unsplash.com/photo-1523955248191-0841a01f29aa?q=80&w=1960&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover fixed;
  color: #fff;
  text-align: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.minimalis-maintenance-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.minimalis-maintenance-message {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  animation: fadeIn 1s ease-out;
}

/* Konami code animation */
@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

/* Float animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Mobile Easter Eggs */
.minimalis-mobile-easter-egg {
  margin-top: 2rem;
  position: relative;
}

/* Tsunami warning Easter egg */
.minimalis-tsunami-warning {
  margin: 1rem 0;
  padding: 0.8rem;
  border: 1px dashed var(--minimalis-red);
  border-radius: 8px;
  color: var(--minimalis-red);
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.minimalis-tsunami-warning:hover {
  opacity: 1;
  background-color: rgba(251, 44, 54, 0.1);
}

.minimalis-tsunami-warning.tsunami-active {
  opacity: 1;
  background-color: rgba(251, 44, 54, 0.2);
  animation: tsunami 1s infinite;
}

@keyframes tsunami {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 44, 54, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(251, 44, 54, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(251, 44, 54, 0);
  }
}

/* Mobile-specific styles */
.minimalis-mobile .minimalis-message {
  padding: 1.5rem;
}

.minimalis-mobile .minimalis-message h1 {
  font-size: 2.5rem;
}

.minimalis-mobile .minimalis-message p {
  font-size: 1.1rem;
}

.minimalis-mobile .minimalis-button {
  padding: 0.8rem 2rem;
  font-size: 1rem;
}
