body {
      background-color: #111111;
      margin: 0;
      padding: 0;
    }

.top-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    }

.menu a:hover,
.icons a:hover {
    color: #b36029;
    text-shadow: 0 0 5px darkblue;
    transition: all 0.3s ease;
}

.navbar-logo {
    width: 120px;
    height: 65px;
    transition: transform 0.3s ease;
}

.icons a img {
    height: 35px;
    width: 35px;
    transition: filter 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(0.95);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111111;
    color: white;
    padding: 0px 10px;
    font-size: 18px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000; 
    background-color: #111111;
}

.menu {
    display: flex;
    gap: 25px;
    flex-grow: 1;   
    align-items: center;
    margin-left: 150px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.icons {
    display: flex;
    gap: 35px;
    justify-content: right;
    margin-right: 300px;
}

.icons a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.icons a img {
    height: 35px;
    width: 35px;
    transition: filter 0.3s ease;
}

.icons a img:hover {
    filter: invert(1) brightness(2);
}

.banner-section {
    position: relative;
    width: 100%;
    height: 550px;
    background-image: url('openart-image_dFVstbLy_1748040645765_raw.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1); 
}

.banner-content {
    position: relative;
    z-index: 1;
    color: white;
}

.banner-content img {
    width: 700px;
    height: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    margin-top: 0;
    margin-bottom: 8px;
}

.banner-content img:hover {
    transform: scale(0.96) translateY(-20px);
}   

.banner-content h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 60px;
    font-weight: 700;   
    color: #ffffff;
    margin: 0;
    word-spacing: 12px;
    text-shadow: 2px 2px 4px black, -2px -2px 4px black, 2px -2px 4px black, -2px 2px 4px black;
    margin-top: 0;
    margin-bottom: 8px;
}

.banner-content p {
    font-size: 25px;
    font-weight: 400;
    margin-top: 10px;
    color: #dddddd;
}

.server-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 60px;
    max-width: 900px;
    margin: 50px auto;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid gray;
    transition: box-shadow 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    color: white;
}

.server-info:hover {
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
    transform: scale(1.01);
}

.server-info h1 {
    font-size: 28px;
    color: #4db8ff;
    margin-bottom: 20px;
}

.regulamin-list {
    margin-left: 20px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.regulamin-subpoints .subpoint {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-left: 4px solid #4db8ff;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.regulamin-subpoints .subpoint:hover {
    background-color: rgba(255, 255, 255, 0.1);
}