body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: radial-gradient(circle, #2f2f2f, #121212);
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.header {
    display: flex;
    flex-direction: column;
    padding: 2px;
}

a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: bold;
}

header {
    display: flex;
    gap: 3em;
    padding: 10px 20px;
    justify-content: space-between;
}

.logo {
    width: 210px;
    height: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
    margin: 2px, 0, 0, 0;
    padding: 0;
}

.nav-links a:hover {
    color: #f4b400;
}

.menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

span h1 {
    font-family: 'Cinzel', 'Times New Roman', Times, serif;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 45px;
}

h1 {
    font-family: 'Cinzel', 'Times New Roman', Times, serif;
}

section {
    padding: 30px;
}




.disclaimer {
    background: #222;
    border-left: 5px solid #f4b400;
    padding: 20px;
    margin: 40px auto;
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    color: #fff;
}

.disclaimer h2 {
    color: #f4b400;
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

.telegram {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: #0088cc;
    color: #fff;
    font-family: poppins, sans-serif;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
}

.telegram:hover {
    background: #009fe3;
    transform: scale(1.05);
}

.facebook {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: #1877f2;
    color: #fff;
    font-family: poppins, sans-serif;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
}

.facebook:hover {
    background: #145dbf;
    transform: scale(1.05);
}

.butbuttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-around;
}










footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    gap: 50px;
    background: linear-gradient(to top, #2c2b2b 0%, #212020 100%);
    padding: 30px 5px 10px 5px;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a:hover {
    color: #f4b400;
}

@media (max-width: 700px) {
    .nav-links{
        display: none;
        flex-direction: column;
        background-color: #444;
        position: absolute;
        top: 60px;
        right: 20px;
        border-radius: 8px;
        padding: 10px;
    }

    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }
    .menu-icon {
        display: block;
    }
}