    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html:has(#logo-container),
    body:has(#logo-container) {
      width: 100%;
      height: 100%;
      overflow: hidden !important;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
    }

    /* Table layout for perfect centering */
   #logo-container.container {
      display: table;
      width: 100%;
      height: 100%;
      background: #D7182A;
      position: relative;
      z-index: 999;
    }

    .table-cell {
      display: table-cell;
      vertical-align: middle;
      text-align: center;
      position: relative;
    }

    .white-screen {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #ffffff;
      z-index: 30;
      opacity: 0;
      bottom: 0;
    }

    .logo-container {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      opacity: 0;
      transform: translateY(100px);
      position: relative;
      z-index: 50;
    }

    .logo-svg,
    .logo-part.name {
      width: 200px;
      height: auto;
      filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
    }

    .logo-part {
      fill: #ffffff;
    }

    .center-line {
      fill: #ffffff;
    }

    .center-line-container {
      position: relative;
      z-index: 40;
      opacity: 1;
    }

    .center-line-expanded {
      position: absolute;
      width: 5px;
      height: 5px;
      background: #ffffff;
      transform: translate(-50%, -50%) rotate(-44deg);
      transform-origin: center;
      clip-path: polygon(0% 0, 100% 7%, 100% 100%, 0% 93%);
    }

    .logo-center {
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .swipe-path {
      margin: 60px 0 0 0;
    }

    .star-path {
      margin: 0 0 35px 0;
    }

