@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&display=swap');

body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: radial-gradient(circle at 20% 20%, #4b2c39 0%, #181818 100%);
    color: #fff;
    min-height: 100vh;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #181818;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    position: relative;
}
.logo-search {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
}
.logo {
    color: #fff;
    font-size: 2rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px #ff5a8a44;
    margin-right: 24px;
}
.search-bar {
    margin: 0 auto;
    display: block;
    padding: 10px 24px;
    border-radius: 24px;
    border: none;
    background: #232323;
    color: #fff;
    font-size: 1.1rem;
    width: 420px;
    max-width: 90vw;
    box-shadow: 0 2px 8px #0002;
    transition: box-shadow 0.2s;
}
.search-bar:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ffd600;
}
.menu-icon {
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s;
}
.menu-icon:hover {
    color: #ffd600;
}
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding-bottom: 120px;
}
.video-container {
    width: 100%;
    max-width: 700px;
    margin: 32px auto 0 auto;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 32px #0005;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #181818;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 32px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
    z-index: 10;
}
.footer-nav nav {
    display: flex;
    gap: 24px;
}
.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.2s, color 0.2s;
    letter-spacing: 0.5px;
}
.nav-link.active, .nav-link:hover {
    color: #ffd600;
    opacity: 1;
}
.footer-arrows {
    display: flex;
    gap: 12px;
}
.arrow {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.arrow:hover {
    opacity: 1;
}
@media (max-width: 600px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 8px;
    }
    .logo-search {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        align-items: flex-start;
    }
    .logo {
        font-size: 1.4rem;
        margin-right: 0;
        margin-bottom: 4px;
    }
    .search-bar {
        width: 100vw;
        min-width: 0;
        max-width: 100vw;
        font-size: 1rem;
        padding: 10px 10px;
        margin: 0;
    }
    .menu-icon {
        align-self: flex-end;
        margin-top: 4px;
    }
    .main-content {
        padding-bottom: 120px;
        padding-left: 6px;
        padding-right: 6px;
        min-height: unset;
    }
    .video-container {
        max-width: 100vw;
        border-radius: 8px;
        margin-top: 10px;
        min-height: 180px;
        aspect-ratio: 16/9;
    }
    .video-container iframe {
        min-height: 180px;
        height: 38vw;
        max-height: 220px;
    }
    .footer-nav {
        flex-direction: column;
        align-items: stretch;
        padding: 8px 4px;
    }
    .footer-nav nav {
        gap: 8px;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
    }
    .nav-link {
        font-size: 0.95rem;
        padding: 4px 0;
    }
    .footer-arrows {
        justify-content: flex-end;
        margin-top: 4px;
    }
} 