    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #0a0a1a;
      overflow-x: hidden;
      color: #eef5ff;
    }

    /* Анимированные лунные блики на фоне */
    .moon-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
      background: radial-gradient(circle at 20% 30%, #12122c, #03030f);
    }

    .stars {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      pointer-events: none;
    }

    .star {
      position: absolute;
      background-color: #ffffff;
      border-radius: 50%;
      opacity: 0.7;
      animation: twinkle 3s infinite alternate;
    }

    @keyframes twinkle {
      0% { opacity: 0.2; transform: scale(1);}
      100% { opacity: 1; transform: scale(1.2);}
    }

    /* основной контент */
    .app {
      max-width: 1400px;
      margin: 0 auto;
      padding: 2rem 2rem 4rem;
      position: relative;
      backdrop-filter: blur(2px);
    }

    /* градиентный текст */
    .gradient-text {
      background: linear-gradient(135deg, #e9c7ff, #b8a9ff, #7f8cff);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      display: inline-block;
    }

    /* навигация */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 4rem;
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(255,255,240,0.15);
    }

    .logo {
      font-size: 1.9rem;
      font-weight: 600;
      letter-spacing: -0.5px;
      font-family: 'Playfair Display', serif;
    }
    .logo span {
      background: linear-gradient(120deg, #e2c6ff, #aa9eff);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
    }
    .nav-links a {
      color: #ddd9ff;
      text-decoration: none;
      font-weight: 500;
      transition: 0.25s;
      font-size: 1rem;
    }
    .nav-links a:hover {
      color: #f0dbff;
      text-shadow: 0 0 6px rgba(190, 150, 255, 0.6);
    }

    /* Hero секция */
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 6rem;
      padding: 2rem 0;
    }
    .hero h1 {
      font-size: 4rem;
      font-weight: 700;
      font-family: 'Playfair Display', serif;
      margin-bottom: 1rem;
      animation: fadeUp 1s ease-out;
    }
    .hero .sub {
      font-size: 1.3rem;
      opacity: 0.85;
      max-width: 600px;
      margin-bottom: 2rem;
      animation: fadeUp 1s ease-out 0.1s both;
    }
    .hero-btn {
      background: rgba(125, 110, 200, 0.2);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(200, 180, 255, 0.5);
      padding: 0.8rem 2rem;
      border-radius: 60px;
      font-weight: 600;
      color: #f0eaff;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 1rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      animation: fadeUp 1s ease-out 0.2s both;
    }
    .hero-btn:hover {
      background: rgba(150, 120, 255, 0.4);
      border-color: #bbaaff;
      transform: scale(1.02);
      box-shadow: 0 8px 25px rgba(100, 70, 200, 0.3);
    }

    /* карточки особенностей */
    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin: 4rem 0 5rem;
    }
    .card {
      background: rgba(20, 18, 45, 0.55);
      backdrop-filter: blur(10px);
      border-radius: 2rem;
      padding: 2rem 1.8rem;
      width: 280px;
      text-align: center;
      border: 1px solid rgba(210, 190, 255, 0.2);
      transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      cursor: default;
    }
    .card:hover {
      transform: translateY(-8px);
      border-color: rgba(200, 170, 255, 0.6);
      background: rgba(30, 25, 60, 0.7);
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.4);
    }
    .card i {
      font-size: 2.5rem;
      background: linear-gradient(145deg, #d9c8ff, #b2a0ff);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 1.2rem;
    }
    .card h3 {
      font-size: 1.6rem;
      margin-bottom: 0.8rem;
      font-weight: 500;
    }
    .card p {
      font-size: 0.95rem;
      opacity: 0.8;
      line-height: 1.4;
    }

    /* галерея / красивая сетка с эффектом луны */
    .gallery-section {
      margin: 5rem 0;
    }
    .section-title {
      text-align: center;
      font-size: 2.5rem;
      font-family: 'Playfair Display', serif;
      margin-bottom: 2rem;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.8rem;
    }
    .gallery-item {
      border-radius: 1.8rem;
      overflow: hidden;
      background: #111122;
      transition: 0.3s;
      cursor: pointer;
      position: relative;
      aspect-ratio: 4 / 3;
      border: 1px solid rgba(255, 215, 255, 0.2);
    }
    .gallery-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      filter: brightness(0.85) saturate(1.1);
    }
    .gallery-item:hover .gallery-img {
      transform: scale(1.05);
      filter: brightness(1) saturate(1.2);
    }
    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      padding: 1rem;
      text-align: center;
      font-weight: 500;
      letter-spacing: 0.5px;
      transform: translateY(0);
      transition: 0.2s;
    }

    /* секция с цитатой / магический блок */
    .magic-quote {
      background: linear-gradient(135deg, rgba(55, 45, 100, 0.4), rgba(25, 20, 55, 0.6));
      border-radius: 3rem;
      padding: 3rem 2rem;
      margin: 5rem 0;
      text-align: center;
      border: 1px solid rgba(190, 160, 250, 0.3);
      backdrop-filter: blur(6px);
    }
    .quote-text {
      font-size: 1.7rem;
      font-style: italic;
      font-family: 'Playfair Display', serif;
      max-width: 800px;
      margin: 0 auto 1rem;
    }
    .quote-author {
      font-weight: 300;
      letter-spacing: 1px;
    }

    /* интерактивный счётчик лайков */
    .interactive {
      background: rgba(10, 8, 28, 0.6);
      border-radius: 2rem;
      padding: 2rem;
      text-align: center;
      margin: 4rem 0;
      border: 1px solid #30285a;
    }
    .moon-counter {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .moon-icon {
      font-size: 3rem;
      cursor: pointer;
      transition: 0.2s;
      color: #ffecb3;
      text-shadow: 0 0 8px #ffd966;
    }
    .moon-icon:active {
      transform: scale(0.94);
    }
    .counter-value {
      font-size: 2.8rem;
      font-weight: 700;
      background: linear-gradient(135deg, #ffe6b0, #c9b2ff);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }
    .counter-label {
      font-size: 1rem;
      letter-spacing: 2px;
    }

    /* footer */
    footer {
      margin-top: 4rem;
      text-align: center;
      padding: 2rem 0 1rem;
      border-top: 1px solid rgba(255,245,220,0.1);
      font-size: 0.85rem;
      opacity: 0.7;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* адаптив */
    @media (max-width: 760px) {
      .app {
        padding: 1rem;
      }
      .hero h1 {
        font-size: 2.7rem;
      }
      .nav-links {
        gap: 1.2rem;
      }
      .quote-text {
        font-size: 1.3rem;
      }
    }