.header h1 {
    font-family: montserrat, sans-serif;
    display: flex;
    justify-content: center;
    font-size: 10vw;
    color: #f4b400;
}

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;
}

.butbuttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.header {
    display: flex;
    background: red;
    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;
}

.fan-club button {
    background: inherit;
    border: 2px solid white;
    margin-bottom: 20px;
    padding: 8px 20px;
    font-size: 15px;
    font-family: montserrat, sans-serif;
    font-weight: 500;
    color: white;
    border-radius: 5px;
}

.fan-club button:hover {
    color: #121212;
    background: white;
}

.fan-club {
    display: flex;
    justify-content: center;
}

.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);
}

.change {
    color: #f4b400;
    font-weight: bold;
    font-size: 18px;
}

.welcome h1 {
    font-family: 'Times New Roman', Times, serif;
}

#middle {
    display: flex;
    justify-content: space-between;
    padding: 10px 50px;
    gap: 50px;
    align-items: baseline;
    flex-wrap: wrap;
}

#change-sub {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    flex: 1 1 250px;
}

#sub {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    flex: 1 1 250px;
}

.og {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 50px;
}

#almost-last {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.image {
    height: 300px;
    width: 100%;
    flex: 1 1 50px;
}

.first {
    text-align: center;
    max-width: 310px;
    flex: 1 1 200px;
}

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;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.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;
    }
}