body {
    font-family: Arial, sans-serif;
    background-color: #242427;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .logo {
     width:40px; height:40px;
     border-radius:50px;
     margin-right: 8px;
}

img {
width:15px; height:15px;
}

  .topbar {
     position: fixed;
     width: 100%;
     background: #111;
     color: white;
     display: flex;
     align-items: center;
     padding: 10px 20px;
     z-index: 1000;
  }
   
.topbar a {
cursor: pointer;
text-decoration: none;
color: white;
}

  header {
    padding: 100px 20px 35px 20px;
    background: #1E1E23;
    position: relative;
    border-radius: 50px;
  }

  header h1 { font-weight: bold; font-size: 3em; margin: 0; }
  header p { margin-top: 10px; font-size: 1.2em; color: #ddd; border-radius: 20px; }

  .btn {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 50px;
    background: #406BFD; color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.1em;
  }
  .btn:hover { background: #2858FD; }

  section {
    padding: 10px 20px 10px; 
    color: white; background: #1E1E23;
    margin: 20px auto;
    max-width: 70%;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    text-align: left; align-items: center;
}

  h2 { color: #fff; }
  ul { list-style: none; padding: 0; }
  ul li { margin: 10px 0; }

  footer {
    background: #111;
    padding: 20px;
    font-size: 0.9em;
    color: #aaa;
    border-radius: 20px; border: 3px solid #111;
   }

  footer a {
    padding: 2px;
    font-size: 0.9em;
    color: #aaa;
    text-decoration: none;
  }

  /* 3-dot top-left icon */
  .dots {
    font-size: 27px;
    cursor: pointer;
    z-index: 1001;
    align-items: center;
    margin-right: 15px;
  }   .dots:hover { color: #4752C4; border-radius: 20px; }

  /* Sliding menu */
  .sidemenu {
    height: 100%;
    width: 0; z-index: 1000;
    position: fixed;
    top: 0;
    left: 0; border-radius: 20px; border: 3px solid #111;
    background-color: #16171C;
    overflow-x: hidden;
    padding-top: 60px;
  }

  .sidemenu a, .sidemenu button {
    padding: 12px 24px;
    text-decoration: none;
    color: white;
    display: block;
    font-size: 14px;
    border: none;
    text-align: left;
    width: 90%;
    cursor: pointer;
  }

  .sidemenu .closebtn {
    position: absolute;
    padding: 5px 10px;
    top: 22px;
    left: 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 20px;
  }
  .closebtn:hover { background: linear-gradient(90deg, #4752C4, #5865F2); border-radius: 10px; }

  .sidemenu a:hover, .sidemenu button:hover { background: #1E1E23;; }
  
    #ageOverlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* transparent dark */
      display: none; /* hidden by default */
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .yes {
      background: #28a745;
      color: white; border:none;
    }

    .yes:hover {
      background: #218838; border:none;
    }

    .no {
      background: #dc3545;
      color: white; border:none;
    }

    .no:hover {
      background: #c82333; border: none;
    }
