
    * {
      padding: 0; box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background: linear-gradient(15deg, #5b4c91, #493d75);
      color: #e6e3ff;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
     /* padding-left: var(--frame-width);
      padding-right: var(--frame-width);*/
    }

    header {
      background-color: #1A162A;
      padding-right: 1.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.4); 

    }
	.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  height: auto;
}

.logo-container h1 {
  font-family: 'Press Start 2P';
  margin: 0;
  font-size: clamp(14px, 2.2vw, 32px);
  user-select: none;
  white-space: nowrap;
  display: block;
}
.logo {  
  height: auto; 
  user-select: none; 
  display: block; 
  align-items: center;
  transform: translateY(-3px);
  width:6vw;

}
    header h1 {
      letter-spacing: 3px;
      user-select: none;
      color: #988DE4;
      display: flex;
    }

    nav {
      display: flex;
      gap: 1.8rem;
    }
    nav a {
      color: #e6e3ff;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
    }
    nav a:hover {
      color: #e6e3ff;
    }

    .burger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }
    .burger div {
      width: 25px;
      height: 3px;
      background: #e6f2e6;
      transition: all 0.3s;
    }

    main {
      flex-grow: 1;
      padding: 3%;
      max-width: 1500px;
      margin: 0 auto;
      padding-top: 6%;
    }

    section {
      margin-bottom: 4%;
      background: rgba(33, 27, 56, 0.8);
      padding: 3%;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      scroll-margin-top: 180px;
    }
    section h1 {
      font-family: 'Press Start 2P', cursive;
      color: #a3d9a5;
      border-bottom: 2px solid #52796f;
      padding-bottom: 0.4rem;
      text-shadow: 1px 1px 0 #2a3d34;
      display: flex;
    }
    section h2 {
      margin-bottom: 1rem;
      font-family: 'Press Start 2P', cursive;
      color: #988DE4;
      font-size: 2vw;
      font-weight: 700;
      border-bottom: 2px solid #7369b3;
      padding-bottom: 0.4rem;
  
    }
    section p, ul, li {
      line-height: 1.6;
      font-size: 1vw;
      color: ##e4e0fa;
    }
    ul {
      list-style: inside disc;
    }

    footer {
      background-color: #1A162A;
      color: #988DE4;
      text-align: center;
      padding: 1rem;
      user-select: none;
      font-size: 0.9rem;
      box-shadow: 0 -2px 5px rgba(0,0,0,0.4);
    }


    @media (max-width: 700px) {
      nav {
        display: none;
        flex-direction: column;
        background: #1A162A;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 1rem;
        border-left: 2px solid #786993;
      }
      nav.active {
        display: flex;
      }
      .burger {
        display: flex;
      }
}/*
.frame-left,
.frame-right {
  width: var(--frame-width);
}

.frame-left {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  background: url('../images/frame-left.png') repeat-y;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.frame-right {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 40px;
  background: url('../images/frame-right.png') repeat-y;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}*/
/*
@media (min-width: 1200px) {
  .frame-left, .frame-right {
    width: 250px;
  }
}

@media (min-width: 770px) and (max-width: 1150px) {
  .frame-left, .frame-right {
    width: 70px;
  }
}

@media (min-width: 768px) {
  .frame-left, .frame-right {
    width: 50px;
  }
}
@media (min-width: 1000px) {
  .frame-left, .frame-right {
    width: 70px;
  }
}
@media (min-width: 1100px) {
  .frame-left, .frame-right {
    width: 80px;
  }
}
*/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #1A162A;
  height: auto;
}
footer{
  position: relative;
  z-index: 20;
  width: 100%;  
}
footer .footer-container {
  max-width: 1500px;      /* ограничиваем ширину текста */
  margin: 0 auto;

  text-align: center;
  color: #988DE4;
}