*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
    height: 100vh;
    overflow: hidden;
}

header {
    background-color: #1a1a1a;
    padding: 2px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 20px;
}

.center .logo {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100vw;
    overflow: hidden;
}

.logo img {
    height: 40px;
    max-width: 100%;
}

.right {
    position: relative;
}

.dropbtn {
    background-color: transparent;
    color: #cccccc;
    font-weight: bold;
    border: none;
    font-size: 24px;
    font-family: 'Oswald', sans-serif;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #cccccc;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    min-width: 240px;
    z-index: 10;
}

.dropdown-content a {
    color: #000;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
}

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

.dropdown:hover .dropdown-content {
    display: block;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.hero h1 {
    color: white;
    font-size: 3em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    margin: 0;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    background-color: #1a1a1a;
    color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    padding: 0 20px;
}

.footer-center {
    flex-grow: 1;
    text-align: center;
}

.footer-right {
    position: absolute;
    right: 20px;
    text-align: right;
}

@media (max-width: 600px) {
    .header-wrapper {
        flex-wrap: nowrap;
        gap: 4px;
        padding: 4px 12px;
    }

    .center .logo img {
        height: 48px;
        max-width: 180px;
    }

    .dropbtn {
        font-size: 18px;
        white-space: nowrap;
        padding: 6px 8px;
    }

    .left {
        display: none;
    }
}
