body {
    margin: 0;
    padding: 0;
    background: url('assets/Artboard 1.png') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Minecraftia', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
  }
  
  .window-frame {
    background-color: #ffffff;
    border: 3px solid #333;
    width: 420px;
    box-shadow: 8px 8px 0 #cc88a1;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }
  
  .window-header {
    width: 100%;
    background-color: #fd60a7;
    color: white;
    padding: 6px 12px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
  }
  
  .window-header .buttons {
    display: flex;
    gap: 4px;
  }
  
  .window-header .buttons span {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border: 1px solid #ff00b3;
    display: inline-block;
  }
  
  .window-body {
    padding: 20px 30px 40px;
    width: 100%;
    text-align: center;
  }
  
  .title {
    font-size: 36px;
    margin-bottom: 50px;
    color: #ff4d88;
    text-shadow: 2px 2px #fff;
  }
  
  .button-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .article-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 420px;
  }
  
  .article-links .article-button {
    background-color: #ffffff;
    border: 4px solid #ff4d88;
    color: #ff4d88;
    font-size: 14px;
    padding: 10px 18px;
    text-decoration: none;
    font-family: 'Minecraftia', sans-serif;
    box-shadow: 3px 3px 0 #444;
    transition: all 0.2s ease;
  }
  
  .article-links .article-button:hover {
    background-color: #ff4d88;
    color: #fff;
    box-shadow: 2px 2px 0 #222;
    transform: scale(1.03);
  }
  
  .article-links .article-button:active {
    transform: scale(0.97);
    box-shadow: 1px 1px 0 #111;
  }
  
  .menu-button {
    background-color: #ffffff;
    border: 3px solid #333;
    box-shadow: 4px 4px 0 #999;
    color: #222;
    padding: 16px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.2s ease;
    display: inline-block;
    text-align: center;
    width: 240px;
  }
  
  .menu-button:hover {
    background-color: #ff99bb;
    box-shadow: 2px 2px 0 #666;
    transform: scale(1.03);
    color: white;
  }
  
  .menu-button:active {
    box-shadow: 1px 1px 0 #333;
    transform: scale(0.98);
  }
  
  .external-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }