* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #000;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.promo-bar {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.header {
    background-color: #181818;
    width: 100%;
    z-index: 1100;
    border-bottom: 2px solid #252525;
    position: sticky;
    top: 0;
    -webkit-backdrop-filter: blur(14px) brightness(1.05);
    backdrop-filter: blur(14px) brightness(1.05);
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.10);
}

.header-content {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    font-weight: 600;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1001;
    margin-left: 10px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wumpus {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
    filter: brightness(1.1);
}

.wumpus:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 1001;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: white;
    background-color: #333;
}

.nav-link.active {
    color: white;
    background-color: #333;
    font-weight: 600;
}

.background-video {
    width: 100vw;
    height: 80vh;
    object-fit: cover;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .background-video {
        height: 60vh;
    }
}

.container {
    flex: 1;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-section {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -1px;
    line-height: 1.2;
}

footer {
    background-color: #1a1a1a;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #1a1a1a;
    font-weight: 500;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1.5fr 2fr;
        gap: 4rem;
    }
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s ease;
    font-weight: 500;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.footer-links a:hover {
    color: white;
}

.right-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-right: 0;
}

@media (min-width: 768px) {
    .right-sections {
        flex-direction: row;
        justify-content: flex-end;
        gap: 6rem;
        margin-right: 2rem;
    }
}

.copyright {
    text-align: center;
    padding: 1rem 0;
    color: #999;
    font-size: 1rem;
    width: 100%;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}