.regulamin-body {
    background: #0d0d0d;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    padding: 100px 20px;
  }
  
  .regulamin-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.2);
  }
  
  .regulamin-container h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
  }
  
  .regulamin-container h2 {
    font-size: 20px;
    color: #f39c12;
    margin-top: 30px;
  }
  
  .regulamin-container p, .regulamin-container li {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
  }
  
  .regulamin-container ul {
    padding-left: 20px;
    margin-top: 10px;
  }

  .nav-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-logo img {
    height: 40px;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #f39c12;
  }
  