
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        height: 100vh;
        background: url("king.jpg") no-repeat center center/cover;
        font-family: 'Black Ops One', cursive;
        overflow: hidden;
        position: relative;
      }

      body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
        z-index: 1;
      }

      body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
        z-index: 1;
      }

      body::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 200%;
        height: 200%;
        background: 
          radial-gradient(circle at 20% 50%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(46, 204, 113, 0.08) 0%, transparent 50%),
          radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
          radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
        animation: smokeMove 20s ease-in-out infinite;
        z-index: 1;
        pointer-events: none;
      }

      @keyframes smokeMove {
        0%, 100% {
          transform: translate(0, 0) scale(1);
          opacity: 0.6;
        }
        25% {
          transform: translate(-5%, -5%) scale(1.05);
          opacity: 0.8;
        }
        50% {
          transform: translate(-10%, 5%) scale(1.1);
          opacity: 0.7;
        }
        75% {
          transform: translate(-5%, 10%) scale(1.05);
          opacity: 0.9;
        }
      }
      .bg-mobile {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
      }

      .bg-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 2s ease-in-out;
      }

      .bg-layer.active {
        opacity: 1;
      }

      .banner {
        position: absolute;
        top: 50%;
        left: 5vw;
        transform: translateY(-50%);
        max-width: 50vw;
        z-index: 2;
        padding: 2vw;
      }

      .quote {
        font-size: 4vw;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 3vh;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.2vw;
        opacity: 0;
        transform: translateX(-50px);
        text-shadow: 
          0 0 1.5vw rgba(46, 204, 113, 0.9),
          0 0 3vw rgba(46, 204, 113, 0.6),
          0.2vw 0.2vw 0px #000,
          -0.2vw -0.2vw 0px #000,
          0.2vw -0.2vw 0px #000,
          -0.2vw 0.2vw 0px #000,
          0.4vw 0.4vw 1.5vw rgba(0, 0, 0, 0.9);
        position: relative;
      }

      .quote::before {
        content: '';
        position: absolute;
        top: -1vh;
        left: -2vw;
        width: 120%;
        height: 0.4vh;
        background: linear-gradient(90deg, #2ecc71 0%, transparent 100%);
        box-shadow: 0 0 1.5vw #2ecc71;
      }

      .quote::after {
        content: '';
        position: absolute;
        bottom: -1vh;
        left: -2vw;
        width: 90%;
        height: 0.3vh;
        background: linear-gradient(90deg, #27ae60 0%, transparent 100%);
        box-shadow: 0 0 1vw #27ae60;
      }

      .btn {
        display: inline-block;
        padding: 1.8vh 3.5vw;
        font-size: 1.4vw;
        font-weight: bold;
        color: #000;
        background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
        border: 0.3vh solid #fff;
        border-radius: 0;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 0.2vw;
        font-family: 'Teko', sans-serif;
        box-shadow: 
          0 0 2vw rgba(46, 204, 113, 0.8),
          0 0.8vh 2.5vh rgba(0,0,0,0.7),
          inset 0 0.1vh 0 rgba(255,255,255,0.3);
        opacity: 0;
        transform: translateY(20px);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        text-decoration: none;
      }

      .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.5s, height 0.5s;
      }

      .btn:hover::before {
        width: 30vw;
        height: 30vw;
      }

      .btn:hover {
        transform: translateY(20px) scale(1.1);
        box-shadow: 
          0 0 3vw rgba(46, 204, 113, 1),
          0 1.2vh 3.5vh rgba(0,0,0,0.9),
          inset 0 0.1vh 0 rgba(255,255,255,0.5);
        border-color: #2ecc71;
      }

      .accent {
        color: #2ecc71;
        text-shadow: 
          0 0 2.5vw rgba(46, 204, 113, 1),
          0 0 4vw rgba(46, 204, 113, 0.7),
          0.2vw 0.2vw 0px #000,
          -0.2vw -0.2vw 0px #000;
      }

      @keyframes glitch {
        0%, 100% {
          text-shadow: 
            0 0 1.5vw rgba(46, 204, 113, 0.9),
            0 0 3vw rgba(46, 204, 113, 0.6),
            0.2vw 0.2vw 0px #000,
            -0.2vw -0.2vw 0px #000;
        }
        25% {
          text-shadow: 
            -0.2vw -0.2vw 0px #2ecc71,
            0.2vw 0.2vw 0px #000,
            0 0 3vw rgba(46, 204, 113, 0.9);
        }
        75% {
          text-shadow: 
            0.2vw -0.2vw 0px #2ecc71,
            -0.2vw 0.2vw 0px #000,
            0 0 3vw rgba(46, 204, 113, 0.9);
        }
      }

      .quote:hover {
        animation: glitch 0.3s infinite;
      }

      @media screen and (max-width: 1024px) {
        body {
          overflow-y: auto;
        }
        
        .bg-mobile {
          display: block;
        }
        
        .banner {
          left: 3vw;
          max-width: 60vw;
        }
        
        .quote {
          font-size: 5vw;
          letter-spacing: 0.15vw;
          margin-bottom: 2.5vh;
        }
        
        .btn {
          font-size: 1.8vw;
          letter-spacing: 0.15vw;
        }
      }

      @media screen and (max-width: 768px) {
        body {
          overflow-y: auto;
          background: none;
        }
        
        .bg-mobile {
          display: block;
        }
        
        .banner {
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%);
          max-width: 90vw;
          text-align: center;
          padding: 3vw;
        }
        
        .quote {
          font-size: 7vw;
          letter-spacing: 0.1vw;
          margin-bottom: 2vh;
        }
        
        .quote::before,
        .quote::after {
          left: 50%;
          transform: translateX(-50%);
        }
        
        .btn {
          font-size: 2.5vw;
          padding: 2vh 4vw;
          letter-spacing: 0.1vw;
        }
      }

      @media screen and (max-width: 480px) {
        body {
          overflow-y: auto;
          background: none;
        }
        
        .bg-mobile {
          display: block;
        }
        
        .banner {
          max-width: 95vw;
          padding: 4vw;
        }
        
        .quote {
          font-size: 9vw;
          letter-spacing: 0.05vw;
          margin-bottom: 2vh;
          text-shadow: 
            0 0 3vw rgba(46, 204, 113, 0.9),
            0 0 5vw rgba(46, 204, 113, 0.6),
            0.3vw 0.3vw 0px #000,
            -0.3vw -0.3vw 0px #000,
            0.3vw -0.3vw 0px #000,
            -0.3vw 0.3vw 0px #000,
            0.5vw 0.5vw 2vw rgba(0, 0, 0, 0.9);
        }
        
        .quote::before {
          height: 0.3vh;
          top: -0.8vh;
        }
        
        .quote::after {
          height: 0.2vh;
          bottom: -0.8vh;
        }
        
        .btn {
          font-size: 4vw;
          padding: 1.8vh 5vw;
          letter-spacing: 0.1vw;
          border-width: 0.2vh;
        }
        
        .btn:hover {
          transform: translateY(20px) scale(1.05);
        }
        
        .btn:hover::before {
          width: 50vw;
          height: 50vw;
        }
        
        .accent {
          text-shadow: 
            0 0 4vw rgba(46, 204, 113, 1),
            0 0 6vw rgba(46, 204, 113, 0.7),
            0.3vw 0.3vw 0px #000,
            -0.3vw -0.3vw 0px #000;
        }
      }

      @media screen and (max-width: 360px) {
        body {
          overflow-y: auto;
          background: none;
        }
        
        .bg-mobile {
          display: block;
        }
        
        .banner {
          padding: 3vw;
        }
        
        .quote {
          font-size: 10vw;
          margin-bottom: 1.5vh;
        }
        
        .btn {
          font-size: 4.5vw;
          padding: 1.5vh 6vw;
        }
      }

      @media screen and (max-height: 600px) and (orientation: landscape) {
        body {
          overflow-y: auto;
          background: none;
        }
        
        .bg-mobile {
          display: block;
        }
        
        .banner {
          position: relative;
          top: auto;
          left: auto;
          transform: none;
          margin: 5vh auto;
          text-align: center;
        }
        
        .quote {
          font-size: 6vw;
          margin-bottom: 2vh;
        }
        
        .btn {
          font-size: 2.5vw;
        }
      }
