
    @import url('inline-font1_1');
    body {
      margin: 0;
      font-family: 'Roboto', Arial, sans-serif;
      background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
      color: #fff;
      min-height: 100vh;
    }
    header {
      background: linear-gradient(90deg, #ff6a00, #ee0979, #00c3ff, #92fe9d);
      padding: 24px 0 12px 0;
      text-align: center;
      border-bottom: 4px solid #fff;
    }
    .logo {
      font-family: 'Montserrat', cursive;
      font-size: 2.5rem;
      letter-spacing: 2px;
      color: #fff;
      text-shadow: 2px 2px 8px #000, 0 0 10px #ff6a00;
      margin-bottom: 8px;
      display: inline-block;
    }
    nav {
      margin: 18px 0 0 0;
    }
    nav a {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin: 0 18px;
      text-decoration: none;
      color: #fff;
      padding: 8px 16px;
      border-radius: 20px;
      background: linear-gradient(90deg, #ff6a00 0%, #ee0979 100%);
      transition: background 0.3s, color 0.3s;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    nav a:hover {
      background: linear-gradient(90deg, #00c3ff 0%, #92fe9d 100%);
      color: #222;
    }
    main {
      max-width: 900px;
      margin: 32px auto;
      background: rgba(0,0,0,0.7);
      border-radius: 18px;
      padding: 32px 24px 48px 24px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    }
    h1, h2, h3, h4 {
      font-family: 'Montserrat', sans-serif;
      margin-top: 36px;
      margin-bottom: 16px;
      font-weight: 700;
      background: linear-gradient(90deg, #ff6a00, #ee0979, #00c3ff, #92fe9d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }
    h1:after, h2:after, h3:after, h4:after {
      content: " ✨";
      font-size: 1.2em;
      color: #ffeb3b;
      margin-left: 6px;
      vertical-align: middle;
    }
    .centered {
      text-align: center;
      margin: 32px 0;
    }
    .responsive-img {
      max-width: 100%;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.25);
      margin: 0 auto;
      display: block;
    }
    .cta-btn {
      display: inline-block;
      margin: 32px auto 0 auto;
      padding: 16px 36px;
      font-size: 1.3rem;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(90deg, #00c3ff 0%, #92fe9d 100%);
      border: none;
      border-radius: 30px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.18);
      cursor: pointer;
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
    }
    .cta-btn:hover {
      background: linear-gradient(90deg, #ff6a00 0%, #ee0979 100%);
      color: #222;
    }
    footer {
      background: linear-gradient(90deg, #00c3ff, #92fe9d);
      color: #222;
      text-align: center;
      padding: 32px 0 16px 0;
      border-top: 4px solid #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      margin-top: 48px;
    }
    .footer-links {
      margin: 12px 0 0 0;
    }
    .footer-links a {
      color: #222;
      text-decoration: none;
      margin: 0 18px;
      font-weight: 700;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: #ee0979;
    }
    @media (max-width: 600px) {
      main { padding: 16px 4px 32px 4px; }
      nav a { margin: 0 6px; font-size: 1rem; }
      .logo { font-size: 1.5rem; }
      h1, h2, h3, h4 { font-size: 1.2rem; }
    }
  