
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: #1b2838;
    color: #c7d5e0;
    overflow-x: hidden;
}

a {
    color: #66c0f4;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background-color: #171a21;
    border-bottom: 2px solid #66c0f4;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    margin-right: 10px;
}

.logo h3 {
    font-size: 1.55rem;
    color: #c7d5e0;
}

.links ul {
    list-style: none;
    display: flex;
    gap: 20px;
    position: relative;
}

.links a {
    font-size: 1rem;
    color: #c7d5e0;
    transition: color 0.3s;
}

.links a:hover {
    color: #ffffff;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #c7d5e0;
    margin: 4px 0;
    transition: all 0.3s;
}

.showcase-area {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    min-height: calc(100vh - 160px);
    background-color: #171a21;
}

.big-title h1 {
    font-size: 3rem;
    color: #c7d5e0;
}

.centered-image {
    margin: 20px 0;
    text-align: center;
}

.centered-image img {
    max-width: 100%;
    height: auto;
    border: 2px solid #66c0f4;
}

.text {
    font-size: 1.2rem;
    color: #c7d5e0;
    margin: 20px 0;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #66c0f4;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #417a9b;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #171a21;
    color: #c7d5e0;
    border-top: 2px solid #66c0f4;
}

.overlay {
    display: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1b2838;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
}

.dropdown-content a {
    color: #c7d5e0;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #3e4c5e;
}

.show {
    display: block;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        background-color: #1b2838;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        display: none;
    }

    .links.active {
        display: flex;
    }

    .overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 1;
        z-index: 1;
    }
}

@media (max-width: 640px) {
    .showcase-area {
        padding: 50px 20px;
    }

    .big-title h1 {
        font-size: 2.5rem;
    }

    .text {
        font-size: 1rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

.game-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #66c0f4;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-align: center;
    text-decoration: none;
    width: 200px;
}

.btn:hover {
    background-color: #417a9b;
}
