* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      display: flex;
      min-height: 100vh;
      background-color: #121212;
      color: #e0e0e0;
      overflow-x: hidden;
      background-image: url('bg-img.jpg');
      background-size: cover;
      background-attachment: fixed;
      background-position: center;
      background-color: rgba(0, 12, 32, 0.80); 
      background-blend-mode: multiply; 
    }
     #libra {
        margin-bottom: 30px;
        display: inline-block;
        padding: 12px 25px;
        font-size: 16px;
        font-weight: bold;
        color: #ffcc00;
        text-decoration: none;
        background: linear-gradient(135deg, #447adf, #c06d00);
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(105, 63, 7, 0.4);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    #libra:hover{
      background: linear-gradient(135deg, #c06d00, #447adf);
      color: #fff;
      transform: translateY(-2px);
    }

    #libra:active {
    transform: translateY(0);
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.6);
}

    .sidebar ul {
      margin: 10px;
    }

    .sidebar {
      width: 260px;
      background-color: rgba(8, 0, 0, 0.8); /* overlay color */
      background-blend-mode: multiply; 
      padding: 20px;
      padding-top: 78px;
      border-right: 2px dotted #333;
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      z-index: 1000;
    }
    .sidebar.active {
      transform: translateX(0);
    }

    .sidebar h2 {
      margin-bottom: 20px;
      font-size: 18px;
    }

    .sidebar ul {
      list-style: none;
      padding: 0;
    }
    .sidebar ul li {
      margin-bottom: 10px;
    }
    .sidebar li a {
      display: block;
      padding: 8px 12px;
      text-decoration: none;
      color: #f0f0f0;
      border-radius: 6px;
      transition: background 0.3s;
    }
    .sidebar a:hover {
      background-color: rgba(255, 217, 0, 0.5);
    }

    .submenu {
      margin-left: 15px;
    }

    .content {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 20px;
      margin-top: 50px;
    }

    .content div {
        margin-bottom: 50px;
        max-width: 1200px;
        line-height: 1.8;
        font-size: 20px
    }

    h1 {
      margin-bottom: 50px;
      font-size: 32px;
      color: #ffcc00;
    }

    .content li {
        margin-left: 50px;
    }

    .content-inner {
      width: 100%;
      max-width: 900px;
    }

    @media (min-width: 1500px) {
      .sidebar {
        transform: translateX(0);
        position: fixed;
      }
      .menu-btn {
        display: none;
      }
      .content {
        margin-left: 520px;
      }
    }
    
    @media (max-width: 1499px) {
      .content div {
        font-size: 12px;
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 652px) {
      .meniubuletin2 {
        width: 350px;
      }

      .content-inner {
        width: 100%;
        max-width: 400px;
      }
    }
    


    .animate {
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
    }


    .delay-1 {
      animation-delay: 0.3s;
    }
    .delay-2 {
      animation-delay: 0.6s;
    }

    .menu-btn {
      position: fixed;
      top: 15px;
      left: 15px;
      background: #1f1f1f;
      border: none;
      padding: 10px;
      border-radius: 6px;
      cursor: pointer;
      z-index: 1100;
    }
    .menu-btn span {
      display: block;
      width: 25px;
      height: 3px;
      background: #f0f0f0;
      margin: 5px 0;
      transition: 0.3s;
    }