* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bebas Neue', sans-serif;
    background-color: #202020;
    color: white;
    overflow-x: hidden;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #111;
}

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

.logo img {
    height: 50px;
    margin-right: 10px;
}

.nav-items {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav-items a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.nav-items a:hover {
    color: #f0d210;
}

.embed-container {
    width: 90%;
    max-width: 900px;
    margin: 2rem auto;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #f0d210;
}

.embed-container iframe {
    width: 100%;
    height: 60vh;
    border: none;
}

.bottom-div {
    display: flex;
    justify-content: center;
    background-color: #333;
    padding: 10px;
}

.bottom-div img {
    width: 30px;
    cursor: pointer;
    transition: transform 0.2s;
}

.bottom-div img:hover {
    transform: scale(1.1);
}

.ad1 {
    width: 90%;
    max-width: 900px;
    margin: auto;
    background-color: #222;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    outline: 1px solid #f0d210;
}

.desc {
    width: 90%;
    max-width: 900px;
    margin: 2rem auto;
    background-color: #222;
    border-radius: 10px;
    padding: 1rem;
    outline: 1px solid #f0d210;
}

.desc-title {
    font-size: 2rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #111;
    margin-top: 2rem;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .nav {
        flex-direction: column;
        text-align: center;
    }

    .nav-items {
        flex-direction: column;
        gap: 0.5rem;
    }

    .embed-container iframe {
        height: 50vh;
    }

    .desc-title {
        font-size: 1.5rem;
    }

    .bottom-div img {
        width: 25px;
    }
}
