    :root {
      --bar-color-main: #00c8ff;
    }

    html, body {
      margin: 0;
      padding: 0;
      background-color: #0b1522;
      color: white;
      font-family: 'Segoe UI', sans-serif;
      scroll-behavior: smooth;
      height: 100%;
    }

    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      overflow-x: hidden;
    }

    header {
      padding: 30px 20px 0;
      text-align: center;
    }

    header img {
      max-width: 300px;
      height: auto;  
      transition: opacity 0.5s ease;
    }

    .equalizer {
      margin: 10px auto;
      display: none;
      justify-content: center;
      gap: 4px;
      width: 90%;
      max-width: 500px;
      height: 60px;
      align-items: flex-end;
    }

    .equalizer.reflection {
      transform: scaleY(-1);
      opacity: 0.4;
      margin-top: -10px;
      margin-bottom: 30px;
    }

    .equalizer.active {
      display: flex;
    }

    .equalizer:not(.reflection) .bar {
      background: var(--bar-color-main);
    }

    .equalizer.reflection .bar {
      background: linear-gradient(to top, var(--bar-color-main) 0%, transparent 100%);
    }

    .bar {
      flex: 1;
      height: 4px;
      border-radius: 4px;
      transition: height 0.1s ease-in-out;
    }

    .stream-section {
      text-align: center;
      margin-top: 30px;
    }

    .stream-section p {
      margin: 0 0 10px;
      font-size: 16px;
      color: #ccc;
    }

    .btn-primary {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      color: #ffffff;
      padding: 14px 28px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      font-size: 16px;
      cursor: pointer;
      margin: 10px;
      transition: all 0.3s ease;
    }

    .btn-primary:hover {
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .btn-primary_christ {
      background: rgba(172, 42, 50, 0.4);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      color: #ffffff;
      padding: 14px 28px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      font-size: 16px;
      cursor: pointer;
      margin: 10px;
      transition: all 0.3s ease;
    }

    .btn-primary_christ:hover {
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .active-btn {
      background: rgba(0, 170, 255, 0.3);
      border: 1px solid rgba(0, 170, 255, 0.5);
    }

    main {
      padding: 20px;
      text-align: center;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    audio {
      width: 90%;
      max-width: 500px;
      margin: 20px auto 0;
      display: block;
    }

    #loading {
      margin-top: 15px;
      font-size: 14px;
      color: #7fdcdc;
      display: none;
    }

    .external-link {
      text-align: center;
      margin-top: 5px;
      margin-bottom: 30px;
      font-size: 14px;
      color: #ccc;
    }

    .external-link a {
      color: #7fdcdc;
      text-decoration: none;
    }

    .external-link a:hover {
      text-decoration: underline;
    }

    footer {
      position: sticky;
      bottom: 0;
      width: 100%;
      max-width: 100vw;
      padding: 12px 15px calc(env(safe-area-inset-bottom, 0) + 12px);
      text-align: center;
      background: rgba(255, 255, 255, 0.05);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 12px;
      color: #aaa;
      box-sizing: border-box;
    }

    @media (max-width: 600px) {
      footer {
        font-size: 11px;
        padding: 12px 10px calc(env(safe-area-inset-bottom, 0) + 12px);
        word-break: break-word;
      }

      .external-link {
        font-size: 13px;
      }
    }

    /* --- SNE-EFFEKT (NYT) --- */
    #snow-container {
      position: fixed;
      inset: 0;
      pointer-events: none; /* så man stadig kan klikke på knapper osv. */
      overflow: hidden;
      z-index: 1;
      display: none; /* starter som skjult */
    }

    .snowflake {
      position: absolute;
      top: -30px;
      color: #ffffff;
      opacity: 0.9;
      user-select: none;
      animation-name: fall;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
    }

    @keyframes fall {
      0% {
        transform: translate3d(0, -100px, 0);
      }
      100% {
        transform: translate3d(0, 110vh, 0);
      }
    }
	
	.nisse {
	  position: fixed;
	  bottom: 80px;
	  width: 110px;
	  height: 110px;
	  background-size: contain;
	  background-repeat: no-repeat;
	  transition: opacity 0.8s ease;
	  z-index: 10;
	}

	#nisse-left {
	  left: -10px;
	  background-image: url('https://netradio.dk/img/nisse_left.png');
	}

	#nisse-right {
	  right: -50px;
	  background-image: url('https://netradio.dk/img/nisse_right.png'); 
	}
