   @keyframes hellishFlow {
      0% { background-position: 0% 0%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 0%; }
    }

    body {
      background: url('images/backs.jpg') center/cover no-repeat fixed, linear-gradient(45deg, #000033, #1e90ff, #00b7eb, #000066);
      background-blend-mode: multiply;
      background-color: #2c4270;
      background-size: 100% 100%, 200% 200%;
      animation: hellishFlow 15s ease infinite;
      color: #cbd5e1;
      cursor: url('/images/mauszeiger.png') auto;
    }

    .glow {
      box-shadow: 0 0 10px #71c2f8, 0 0 20px #4488ef;
    }
    button,
    input {
      background: #111827;
      border: 1px solid #448eef;
      color: #71b7f8;
      transition: all 0.3s ease;
    }
    button:hover {
      background: #448eef;
      color: white;
      box-shadow: 0 0 10px #71c2f8, 0 0 20px #71c2f8;
    }
    input:focus {
      outline: none;
      border-color: #71bbf8;
      box-shadow: 0 0 10px #71d9f8;
    }
    .card {
      background: #1f2937;
      border-radius: 1rem;
      padding: 1rem;
      box-shadow: 0 0 10px #2c1d7f, inset 0 0 10px #2651dc;
    }
    .flame-text {
      color: #71b7f8;
      animation: flicker 1.5s infinite alternate;
    }
    @keyframes flicker {
      0% {
        text-shadow: 0 0 5px #717ff8;
      }
      100% {
        text-shadow: 0 0 20px #2699dc, 0 0 30px #447aef;
      }
    }
    @keyframes scale-up {
      0% {
        transform: scale(0.8);
        opacity: 0;
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }
    .animate-scale-up {
      animation: scale-up 0.4s ease forwards;
    }  
    @keyframes lavaPulse {
      0%, 100% {
        box-shadow: 0 0 20px #ff4500, 0 0 40px #ff6347, 0 0 60px #ff4500;
      }
      50% {
        box-shadow: 0 0 30px #ff6347, 0 0 60px #ff4500, 0 0 80px #ff6347;
      }
    }
    .lava-glow {
      animation: lavaPulse 2s infinite;
      border: 2px solid #ff4500;
    }

    .custom-checkbox {
      display: none;
    }
    .custom-checkbox + label {
      position: relative;
      padding-left: 30px;
      cursor: pointer;
      font-size: 1rem;
      color: #cbd5e1;
      line-height: 1.5;
      margin-left: 10px;
    }
    .custom-checkbox + label:before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      background: #1f2937;
      border: 2px solid #1e90ff;
      border-radius: 4px;
      transition: all 0.3s ease;
    }
    .custom-checkbox:checked + label:before {
      background: #1e90ff;
      box-shadow: 0 0 10px #00b7eb, inset 0 0 5px #1e90ff;
    }
    .custom-checkbox + label:after {
      content: '🔥';
      position: absolute;
      left: 4px;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
      font-size: 14px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .custom-checkbox:checked + label:after {
      opacity: 1;
    }

    .time-inputs {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    @keyframes bluePulse {
      0%, 100% { box-shadow: 0 0 20px rgba(30, 144, 255, 0.8), 0 0 40px rgba(0, 191, 255, 0.6); }
      50% { box-shadow: 0 0 30px rgba(0, 191, 255, 0.9), 0 0 50px rgba(30, 144, 255, 0.7); }
    }

    @keyframes blueFlicker {
      0% { text-shadow: 0 0 10px rgba(30, 144, 255, 0.7); }
      100% { text-shadow: 0 0 20px rgba(0, 191, 255, 0.9), 0 0 30px rgba(30, 144, 255, 0.7); }
    }

    .custom-info-modal {
      box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
      animation: bluePulse 3s infinite;
      position: relative;
      overflow: hidden;
    }

    .custom-info-modal::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, rgba(30, 144, 255, 0.2) 50%, transparent 100%);
      animation: hellishFlow 15s ease infinite;
      z-index: 0;
    }

    .custom-info-modal > * {
      position: relative;
      z-index: 1;
    }

    .flame-text {
      animation: blueFlicker 2s infinite alternate;
    }

    .custom-info-button {
      box-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
      animation: bluePulse 3s infinite;
    }

    .custom-finger-modal {
      box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
      animation: bluePulse 3s infinite;
      position: relative;
      overflow: hidden;
    }

    .custom-finger-modal::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, rgba(30, 144, 255, 0.2) 50%, transparent 100%);
      animation: hellishFlow 15s ease infinite;
      z-index: 0;
    }

    .custom-finger-modal > * {
      position: relative;
      z-index: 1;
    }

    .flame-text {
      animation: blueFlicker 2s infinite alternate;
    }

    .custom-finger-button {
      background: linear-gradient(to right, #1e90ff, #00b7eb);
      color: white;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
      animation: bluePulse 3s infinite;
    }

    .custom-finger-button:hover {
      background: linear-gradient(to right, #00b7eb, #1e90ff);
      box-shadow: 0 0 20px rgba(0, 191, 255, 0.9);
    }

    .custom-delete-modal {
      box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
      animation: bluePulse 3s infinite;
      position: relative;
      overflow: hidden;
    }

    .custom-delete-modal::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, rgba(30, 144, 255, 0.2) 50%, transparent 100%);
      animation: hellishFlow 15s ease infinite;
      z-index: 0;
    }

    .custom-delete-modal > * {
      position: relative;
      z-index: 1;
    }

    .flame-text {
      animation: blueFlicker 2s infinite alternate;
    }

    .custom-cancel-button {
      background: linear-gradient(to right, #1e90ff, #00b7eb);
      color: white;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
      animation: bluePulse 3s infinite;
    }

    .custom-cancel-button:hover {
      background: linear-gradient(to right, #00b7eb, #1e90ff);
      box-shadow: 0 0 20px rgba(0, 191, 255, 0.9);
    }

    .custom-delete-button {
      background: linear-gradient(to right, #dc2626, #ef4444);
      color: white;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 0 15px rgba(220, 38, 38, 0.7);
      animation: bluePulse 3s infinite;
    }

    .custom-delete-button:hover {
      background: linear-gradient(to right, #ef4444, #dc2626);
      box-shadow: 0 0 20px rgba(220, 38, 38, 0.9);
    }

    .custom-admin-modal {
      box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
      animation: bluePulse 3s infinite;
      position: relative;
      overflow: hidden;
    }

    .custom-admin-modal::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, rgba(30, 144, 255, 0.2) 50%, transparent 100%);
      animation: hellishFlow 15s ease infinite;
      z-index: 0;
    }

    .custom-admin-modal > * {
      position: relative;
      z-index: 1;
    }

    .flame-text {
      animation: blueFlicker 2s infinite alternate;
    }

    .custom-cancel-button {
      background: linear-gradient(to right, #1e90ff, #00b7eb);
      color: white;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
      animation: bluePulse 3s infinite;
    }

    .custom-cancel-button:hover {
      background: linear-gradient(to right, #00b7eb, #1e90ff);
      box-shadow: 0 0 20px rgba(0, 191, 255, 0.9);
    }

    .custom-login-button {
      background: linear-gradient(to right, #1e90ff, #00b7eb);
      color: white;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
      animation: bluePulse 3s infinite;
    }

    .custom-login-button:hover {
      background: linear-gradient(to right, #00b7eb, #1e90ff);
      box-shadow: 0 0 20px rgba(0, 191, 255, 0.9);
    }
