
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(to bottom, #000000 85%, #683902 110%);
}

a:hover{
    color:white;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    margin: 0 10%;
    padding:20px;
}

.gradText {
    background: linear-gradient(to bottom, #FFFFFF, #363A3F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #111111;
    z-index: 999;
}

.logo {
    height: 50px;
    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.10);
}

.navbar .links {
    display: flex;
    gap: 15px;
}

    .navbar .links a {
        color: #de6323;
        text-decoration: none;
        font-size: 1em;
        padding: 5px 10px;
        transition: background-color 0.3s, color 0.3s;
    }

        .navbar .links a:hover {
            background-color: #de6323;
            color: #151515;
            border-radius: 5px;
        }

.navbar .download {
    padding: 5px 15px;
    color: #da4a15;
    border: 2px solid #da4a15;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

    .navbar .download:hover {
        background-color: #da4a15;
        color: #151515;
    }

.navbar .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .navbar .hamburger div {
        width: 25px;
        height: 3px;
        background-color: #da4a15;
    }

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    color: #da4a15;
    min-height: 150px;
    width: 100%;
    background-color: #000;
    box-shadow: 0 -2px 10px rgb(130, 72, 7, .3);
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 5%;
}

    .footer img {
        height: 60px;
        flex-shrink: 0;
    }

    .footer div {
        display: flex;
        gap: 10px;
    }

a {
    color: #da4a15;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
}

.footer a:hover {
    text-decoration: underline;
}

.ads-area {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .navbar .links {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: #151515;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 10px;
        border-radius: 5px;
    }

        .navbar .links.active {
            display: flex;
        }

    .navbar .hamburger {
        display: flex;
    }

    .navbar .download {
        margin-right: 5px;
    }

    .main-content {
        margin: 0;
    }
}

@media (max-width: 640px) {

    .footer div {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .footer div :nth-child(2) {
            display: none;
        }
}
