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

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      background-color: hsl(222, 47%, 7%);
      color: white;
      min-height: 100vh;
      overflow-x: hidden;
    }

    .container {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* Background decorative elements */
    .bg-decoration {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .glow-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      animation: float 15s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(30px, -30px); }
    }

    .glow-1 { top: 80px; left: 40px; width: 200px; height: 200px; background: hsla(160, 84%, 39%, 0.25); animation-delay: 0s; }
    .glow-2 { top: 160px; right: 40px; width: 250px; height: 250px; background: hsla(158, 64%, 52%, 0.25); animation-delay: 5s; }
    .glow-3 { bottom: 80px; left: 25%; width: 220px; height: 220px; background: hsla(160, 84%, 45%, 0.2); animation-delay: 10s; }
    .glow-4 { top: 50%; right: 25%; width: 180px; height: 180px; background: hsla(160, 84%, 39%, 0.25); animation-delay: 7s; }

    .grid-pattern {
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(hsla(160, 84%, 39%, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, hsla(160, 84%, 39%, 0.05) 1px, transparent 1px);
      background-size: 50px 50px;
    }

    /* Snowfall Animation */
    .snowfall {
      position: fixed;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }

    .snowflake {
      position: absolute;
      top: -10px;
      color: white;
      font-size: 1em;
      opacity: 0.8;
      animation: fall linear infinite;
      text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }

    @keyframes fall {
      0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.8; }
      100% { transform: translateY(100vh) translateX(50px) rotate(360deg); opacity: 0.3; }
    }

    /* Banner */
    .banner {
      background: linear-gradient(to right, hsl(160, 84%, 39%), hsl(160, 84%, 45%));
      text-align: center;
      padding: 14px 16px;
      position: relative;
      z-index: 10;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    }

    .banner-text {
      font-size: 14px;
      font-weight: bold;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    /* Main content */
    main {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 24px 16px;
      position: relative;
      z-index: 10;
    }

    .content-wrapper {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }

    /* Logo */
    .logo-container {
      width: 100%;
      display: flex;
      justify-content: center;
      padding-top: 24px;
      padding-bottom: 16px;
      position: relative;
      z-index: 20;
      animation: fadeInDown 0.6s ease-out;
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .logo-container img {
      width: 96px;
      height: 96px;
      border-radius: 16px;
      box-shadow: 0 25px 50px -12px hsla(160, 84%, 39%, 0.5);
      border: 2px solid hsla(158, 64%, 52%, 0.3);
      transition: transform 0.3s ease;
      object-fit: cover;
    }

    .logo-container img:hover {
      transform: scale(1.05);
    }

    /* Hero */
    .hero {
      animation: fadeInUp 0.8s ease-out;
      margin-bottom: 20px;
    }

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

    .hero-title {
      font-size: 36px;
      font-weight: bold;
      color: white;
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .hero-subtitle {
      font-size: 16px;
      color: hsl(220, 9%, 70%);
      line-height: 1.6;
    }

    /* Trustpilot */
    .trustpilot-section {
      animation: fadeInUp 0.8s ease-out 0.2s both;
      margin-bottom: 20px;
    }

    .trustpilot-text {
      font-size: 14px;
      color: hsl(220, 9%, 70%);
      margin-bottom: 12px;
      font-weight: 500;
    }

    .trustpilot-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      border: 1px solid hsla(160, 84%, 39%, 0.3);
      border-radius: 12px;
      padding: 12px 24px;
      transition: all 0.3s ease;
    }

    .trustpilot-badge:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px hsla(160, 84%, 39%, 0.3);
      border-color: hsla(160, 84%, 39%, 0.5);
      background: rgba(255, 255, 255, 0.08);
    }

    .trustpilot-logo {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .trustpilot-name {
      font-size: 18px;
      font-weight: 700;
      color: hsl(160, 84%, 39%);
    }

    .stars {
      display: flex;
      gap: 4px;
    }

    .star {
      width: 20px;
      height: 20px;
      fill: hsl(160, 84%, 39%);
    }

    .rating-count {
      color: hsl(220, 9%, 70%);
      font-size: 14px;
    }

    /* CTA Button */
    .cta-button {
      width: 100%;
      background: linear-gradient(to right, hsl(160, 84%, 39%), hsl(160, 84%, 45%));
      color: white;
      font-size: 18px;
      font-weight: bold;
      padding: 28px;
      border-radius: 12px;
      border: 1px solid hsla(158, 64%, 52%, 0.3);
      box-shadow: 0 20px 25px -5px hsla(160, 84%, 39%, 0.6);
      cursor: pointer;
      transition: all 0.3s;
      margin-bottom: 20px;
      animation: fadeInUp 0.8s ease-out 0.3s both;
      position: relative;
      overflow: hidden;
    }

    .cta-button:hover {
      box-shadow: 0 25px 50px -12px hsla(160, 84%, 39%, 0.7);
      transform: translateY(-2px);
    }

    .cta-button span {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    /* Pro Tip */
    .pro-tip {
      background: linear-gradient(135deg, hsla(43, 74%, 49%, 0.2) 0%, hsla(48, 96%, 50%, 0.15) 100%);
      border: 2px solid hsl(43, 74%, 49%);
      border-radius: 12px;
      padding: 16px;
      text-align: center;
      backdrop-filter: blur(20px);
      margin-bottom: 20px;
      animation: fadeInUp 0.8s ease-out 0.4s both;
      box-shadow: 0 0 20px hsla(43, 74%, 49%, 0.3), inset 0 0 15px hsla(43, 74%, 49%, 0.1);
      transition: all 0.3s ease;
    }

    .pro-tip:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px hsla(43, 74%, 49%, 0.4);
    }

    .pro-tip-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 4px;
    }

    .pro-tip-title {
      font-size: 14px;
      font-weight: 800;
      color: hsl(43, 74%, 49%);
      letter-spacing: 0.5px;
    }

    .pro-tip-text {
      font-size: 12px;
      color: hsl(220, 9%, 70%);
      line-height: 1.4;
      margin-bottom: 8px;
    }

    .pro-tip-highlight {
      font-size: 14px;
      font-weight: 700;
      color: hsl(43, 74%, 49%);
    }

    /* Offer Cards */
    .offers-section {
      margin-bottom: 20px;
      animation: fadeInUp 0.8s ease-out 0.5s both;
    }

    .offer-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .offer-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      border: 1px solid hsla(160, 84%, 39%, 0.3);
      border-radius: 16px;
      padding: 16px 12px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .offer-card:hover {
      border-color: hsl(160, 84%, 39%);
      transform: translateY(-6px);
      box-shadow: 0 15px 40px hsla(160, 84%, 39%, 0.35);
      background: rgba(255, 255, 255, 0.08);
    }

    .offer-card.featured {
      border-color: hsl(160, 84%, 39%);
      box-shadow: 0 8px 25px hsla(160, 84%, 39%, 0.3);
    }

    .offer-logo {
      width: 48px;
      height: 48px;
      object-fit: cover;
      border-radius: 12px;
    }

    .offer-name {
      font-size: 14px;
      font-weight: 700;
      color: white;
    }

    .offer-desc {
      font-size: 12px;
      color: hsl(220, 9%, 70%);
    }

    .offer-price {
      font-size: 18px;
      font-weight: 800;
      color: hsl(160, 84%, 39%);
    }

    .offer-rating {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 12px;
      color: hsl(43, 74%, 49%);
    }

    /* Steps Card */
    .steps-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      border-radius: 16px;
      padding: 24px;
      border: 2px solid hsla(160, 84%, 39%, 0.5);
      box-shadow: 0 25px 50px -12px hsla(160, 84%, 39%, 0.5);
      margin-bottom: 20px;
      position: relative;
      overflow: hidden;
      animation: fadeInUp 0.8s ease-out 0.6s both;
      transition: all 0.3s ease;
    }

    .steps-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 30px 60px -12px hsla(160, 84%, 39%, 0.6);
    }

    .steps-title {
      font-size: 18px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 16px;
      background: linear-gradient(to right, hsl(158, 64%, 85%), white, hsl(158, 64%, 85%));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 16px;
      transition: transform 0.3s;
    }

    .step:last-child {
      margin-bottom: 0;
    }

    .step:hover {
      transform: translateX(4px);
    }

    .step-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, hsl(158, 64%, 52%), hsl(160, 84%, 39%), hsl(160, 84%, 45%));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 15px -3px hsla(160, 84%, 39%, 0.6);
      border: 2px solid hsla(158, 64%, 52%, 0.3);
      transition: all 0.3s ease;
    }

    .step:hover .step-icon {
      box-shadow: 0 20px 25px -5px hsla(160, 84%, 39%, 0.7);
      transform: scale(1.1);
    }

    .step-icon svg {
      width: 20px;
      height: 20px;
      color: white;
    }

    .step-content {
      flex: 1;
      padding-top: 4px;
      text-align: left;
    }

    .step-title {
      color: white;
      font-weight: bold;
      font-size: 16px;
      margin-bottom: 2px;
    }

    .step-description {
      color: hsla(158, 64%, 52%, 0.8);
      font-size: 14px;
    }

    /* Feature badges */
    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      padding-top: 4px;
      animation: fadeInUp 0.8s ease-out 0.7s both;
    }

    .feature-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      color: hsl(220, 9%, 70%);
      font-size: 14px;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      padding: 8px 14px;
      border-radius: 9999px;
      border: 1px solid hsla(160, 84%, 39%, 0.3);
      transition: all 0.3s ease;
    }

    .feature-badge:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: hsla(160, 84%, 39%, 0.5);
      transform: translateY(-2px);
    }

    .feature-badge svg {
      width: 16px;
      height: 16px;
      color: hsl(158, 64%, 52%);
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar { width: 10px; }
    ::-webkit-scrollbar-track { background: hsl(222, 47%, 7%); }
    ::-webkit-scrollbar-thumb { background: linear-gradient(135deg, hsl(160, 84%, 39%), hsl(160, 84%, 45%)); border-radius: 5px; }
    ::-webkit-scrollbar-thumb:hover { background: linear-gradient(135deg, hsl(158, 64%, 52%), hsl(160, 84%, 39%)); }

    @media (min-width: 768px) {
      .hero-title { font-size: 48px; }
      .hero-subtitle { font-size: 18px; }
      .logo-container img { width: 112px; height: 112px; }
      .offer-cards { gap: 16px; }
      .offer-card { padding: 24px 16px; }
      .offer-logo { width: 64px; height: 64px; }
      .offer-name { font-size: 18px; }
      .offer-desc { font-size: 14px; }
      .offer-price { font-size: 20px; }
    }
