 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-image: url(./1.jpg);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
      padding: 1rem;
    }

    .card {
      max-width: 700px;
      width: 100%;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 48px;
      padding: 2.5rem 2rem;
      box-shadow: 0 25px 50px -8px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
      transition: 0.3s ease;
      text-align: center;
    }

    h1 {
      font-size: 2.2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      color: #eef5ff;
      text-shadow: 0 2px 6px rgba(0,0,0,0.3);
      margin-bottom: 0.35rem;
    }

    .subhead {
      color: #9bb7d4;
      font-weight: 400;
      font-size: 1rem;
      letter-spacing: 0.3px;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
      padding-bottom: 1.5rem;
      margin-bottom: 2rem;
    }

    .advice-box {
      background: rgba(0, 0, 0, 0.25);
      border-radius: 32px;
      padding: 2.2rem 1.8rem;
      margin-bottom: 2rem;
      border-left: 4px solid #7aa9e0;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      transition: all 0.2s;
    }

    .advice-text {
      font-size: 1.7rem;
      line-height: 1.4;
      font-weight: 400;
      color: #f0f7ff;
      text-shadow: 0 1px 4px rgba(0,0,0,0.2);
      word-break: break-word;
    }

    .advice-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 0.75rem;
      font-size: 0.85rem;
      color: #8aaec9;
      letter-spacing: 0.3px;
      border-top: 1px solid rgba(255,255,255,0.04);
      padding-top: 0.75rem;
    }

    .badge {
      background: rgba(70, 130, 200, 0.2);
      padding: 0.2rem 1rem;
      border-radius: 40px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      font-weight: 400;
    }

    .btn-group {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 0.5rem;
    }

    .btn {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 0.9rem 2rem;
      border-radius: 60px;
      font-size: 1rem;
      font-weight: 500;
      color: #d4e4f5;
      cursor: pointer;
      transition: all 0.2s ease;
      backdrop-filter: blur(4px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      flex: 1 1 auto;
      justify-content: center;
    }

    .btn-primary {
      background: linear-gradient(135deg, #af40cb, #8a4aff);
      color: white;
      font-weight: 500;
      box-shadow: 0 4px 15px rgba(74, 74, 255, 0.4);
    }

    .btn-primary:hover {
      
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(137, 74, 255, 0.6);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.10);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .btn-danger {
      background: #b13b3b;
      border-color: #d45a5a;
      color: white;
    }

    .btn-danger:hover {
      background: #c94a4a;
      border-color: #e66a6a;
      transform: scale(1.02);
    }

    .btn:active {
      transform: scale(0.96);
    }

    .status {
      margin-top: 1.8rem;
      font-size: 0.9rem;
      color: #88aecf;
      background: rgba(0, 0, 0, 0.15);
      padding: 0.6rem 1.2rem;
      border-radius: 60px;
      display: inline-block;
      backdrop-filter: blur(2px);
      border: 1px solid rgba(255,255,255,0.02);
    }

    .status span {
      color: #b8d6f0;
      font-weight: 500;
    }

    hr {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      margin: 1.2rem 0;
    }

    .footer-note {
      font-size: 0.8rem;
      color: #56748f;
      margin-top: 0.8rem;
    }
.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}
    @media (max-width: 520px) {
      .card { padding: 1.8rem 1rem; }
      h1 { font-size: 1.8rem; }
      .advice-text { font-size: 1.3rem; }
      .btn { padding: 0.7rem 1.2rem; }

      .menu {
        left: 0%;
        right: 0%;
        width: 100%;
        justify-content: center;
      }
      .menu a {
        font-size: 14px;
        margin-right: 10px;

      }
    }

    @media (max-width: 330px) {
       .card {
        margin-top: 80px;
      }
      .menu {
        left: 0%;
        right: 0%;
        width: 100%;
      }
      .menu a {
        font-size: 10px;
        margin-right: 10px;
        
      }

      .badge {
      padding: 0.1rem 1rem;
      border-radius: 40px;
      font-weight: 200;
    }
    }

    .fade-in {
      animation: fadeUp 0.4s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
    }

    @keyframes fadeUp {
      0% { opacity: 0; transform: translateY(12px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .info-section {
      text-align: left;
      color: #b0cde0;
      font-size: 0.92rem;
      line-height: 1.6;
      background: rgba(0, 0, 0, 0.15);
      border-radius: 24px;
      padding: 1.2rem 1.8rem;
      border: 1px solid rgba(255, 255, 255, 0.04);
      margin-top: 0.5rem;
    }

    .info-section h3 {
      color: #d4e8fc;
      font-weight: 500;
      font-size: 1rem;
      letter-spacing: 0.5px;
      margin-bottom: 0.6rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .info-section ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .info-section ul li {
      padding: 0.25rem 0;
      padding-left: 1.6rem;
      position: relative;
      color: #c5ddea;
    }

    .info-section ul li::before {
      content: "▹";
      position: absolute;
      left: 0;
      color: #7aa9e0;
      font-weight: 300;
    }

    .info-section .highlight {
      color: #b0d4f5;
      font-weight: 500;
      background: rgba(60, 130, 210, 0.15);
      padding: 0.1rem 0.5rem;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.04);
    }


.menu{
    position: fixed;
    display: inline;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: space-between;
    top: 0;
    left: 25%;
    right: 25%;
    z-index: 9999;
}
.menu a {
  float: left;
  color: #c19fe6;
  text-align: center;
  padding: 10px 0px;
  margin-right: 25px;
  text-decoration: none;
  font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-shadow: 0 4px 15px rgba(74, 74, 255, 0.4);
    cursor: pointer;
}
.menu a:hover{
    transform: translateY(-2px);
    text-shadow: 10px 10px 25px rgba(137, 74, 255, 0.6);
}

.footer {
    margin-top: 20px;
    color: #666;
    font-size: 12px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contacts {
    display: flex;
    margin-top: 20px; 
    text-align: center; 
    color: #888;
}
