body {
    font-family: 'VT323', monospace;
    background-color: #f8f0dc;
    margin: 0;
    padding: 0;
    color: #023047;
  }
  
header {
    position: relative;
    text-align: center;
    border-bottom: 2px solid #1d3557;
    padding: 10px 20px;
  }
  
  h1 {
    font-size: 48px;
    color: #1d3557;
    margin: 0;
  }
  
  .subtitle {
    color: #e76f51;
    font-size: 20px;
  }
  
  nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 20px;
    padding: 10px;
    margin-top: 10px;
  }
  
  nav a {
    text-decoration: none;
    color: #1d3557;
    padding: 5px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  nav a:hover {
    background-color: rgba(29, 53, 87, 0.1);
  }
  
  nav a.active {
    color: #e76f51 !important;
    font-weight: bold;
    position: relative;
  }
  
  nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background-color: #e76f51;
    border-radius: 3px;
  }
  
  .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><rect width="1" height="1" fill="%23ccc"/></svg>');
  }
  
  .content-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  footer {
    text-align: center;
    font-size: 18px;
    padding: 20px;
    border-top: 2px solid #1d3557;
    color: #333;
  }

  .language-selector {
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
  }
  
  .language-selector a {
    margin: 0 10px;
    color: #e76f51;
    text-decoration: none;
    border: 1px solid #e76f51;
    padding: 4px 10px;
    border-radius: 5px;
    font-family: 'VT323', monospace;
  }
  
  .language-selector a:hover {
    background-color: #e76f51;
    color: #fff;
  }

  .language-selector.top-right {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 14px;
  }

  .language-selector.top-right a {
    margin-left: 10px;
    text-decoration: none;
    color: #e76f51;
    border: 1px solid #e76f51;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'VT323', monospace;
  }

  .language-selector.top-right a:hover {
    background-color: #e76f51;
    color: #fff;
  }