@media (max-width: 600px) {
  /* ...existing code... */
  .funkeservice-footer div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .funkeservice-footer a {
    margin: 0.2rem 0;
    font-size: 1rem;
    text-align: center;
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }
}
.funkeservice-card {
  /* ...existing code... */
}

@media (max-width: 600px) {
  .funkeservice-main {
    padding: 1.5rem 0.5rem;
  }
  .funkeservice-card {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 98vw;
    border-radius: 12px;
  }
  .funkeservice-logo {
    width: 120px;
    margin-bottom: 1rem;
  }
  .funkeservice-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  .funkeservice-message {
    font-size: 1rem;
  }
  .funkeservice-footer {
    font-size: 0.95rem;
    padding: 1rem 0 0.7rem 0;
  }
  .funkeservice-footer a {
    margin: 0 0.5rem;
    font-size: 0.95rem;
  }
}

body {
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  margin: 0;
  background: #193041;
  min-height: 100vh;
}

.funkeservice-bg {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Animated background */
.funkeservice-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 20% 30%, #ff0000 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, #ffffff 0%, transparent 60%),
              linear-gradient(120deg, #193041 60%, #ff0000 100%);
  opacity: 0.18;
  z-index: 0;
  animation: bgmove 12s linear infinite alternate;
}

@keyframes bgmove {
  0% { filter: blur(0px); }
  100% { filter: blur(8px); }
}

.funkeservice-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.funkeservice-card {
  background: rgba(255,255,255,0.97);
  padding: 2.5rem 2rem 2rem 2rem;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(25,48,65,0.12);
  max-width: 480px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadein 1.2s cubic-bezier(.77,0,.18,1) 0.2s both;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.funkeservice-logo {
  width: 160px;
  margin-bottom: 1.5rem;
  animation: logoPop 1.2s cubic-bezier(.77,0,.18,1) 0.4s both;
}

@keyframes logoPop {
  0% { opacity: 0; transform: scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}

.funkeservice-title {
  color: #193041;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
}

.funkeservice-message {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.funkeservice-footer {
  background: #193041;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0 1rem 0;
  font-size: 1rem;
  z-index: 2;
  position: relative;
  box-shadow: 0 -2px 12px rgba(25,48,65,0.08);
}
.funkeservice-footer a {
  color: #ff0000;
  margin: 0 1rem;
  text-decoration: underline;
  transition: color 0.2s;
}
.funkeservice-footer a:hover {
  color: #fff;
}

.navbar {
  background-color: #313236;
  border-radius: 2px;
  max-width: 800px;
}

.navbar a {
  color: #aaa;
  display: inline-block;
  font-size: 15px;
  padding: 10px;
  text-decoration: none;
}

.navbar a:hover {
  color: #ffffff;
}

