body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #e94fc2;
    color: #fff;
}

.navbar {
    background: #e94fc2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    height: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 24px 8px 10px;
    gap: 30px;
}

.site-logo {
    height: 60px;
    width: auto;
    display: block;
}

.search-bar {
    display: flex;
    align-items: center;
    margin-left: 20px;
    flex: 1;
    max-width: 420px;
}

.search-bar input[type="text"] {
    padding: 8px 14px;
    border-radius: 20px 0 0 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    width: 220px;
    background: #e94fc2;
    color: #fff;
}

.search-bar button {
    padding: 8px 18px;
    border-radius: 0 20px 20px 0;
    border: none;
    background: #b400a1;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.search-bar button:hover {
    background: #e94fc2;
}

.nav-links {
    background: #e94fc2;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 0 0 0 10px;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    height: 48px;
    align-items: center;
}

.nav-links ul li {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s;
}

.nav-links ul li.gold {
    background: #fff200;
    color: #000;
    font-weight: bold;
}

.nav-links ul li.selected {
    background: #a0008e;
    color: #fff;
    font-weight: bold;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
    min-height: calc(100vh - 60px);
    animation: fadein 0.7s cubic-bezier(.4,2,.6,1);
}

@keyframes fadein {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
}

.gold-gradient {
    background: linear-gradient(90deg, #ffe259 0%, #ffc700 100%);
    color: #222;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.banner {
    background: #e94fc2;
    width: 300px;
    min-width: 200px;
    max-width: 320px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    height: 100vh;
    box-sizing: border-box;
}

.banner-img {
    height: 100vh;
    width: 100%;
    object-fit: contain;
    display: block;
    max-width: 100%;
    max-height: 100vh;
}

.video-section {
    flex: 1;
    max-width: 900px;
    min-width: 350px;
    margin: 30px 20px 0 20px;
    background: #e94fc2;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 30px 0;
}

.video-player {
    width: 100%;
    max-width: 800px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-player video {
    width: 100%;
    height: 400px;
    background: #000;
}

.video-info {
    width: 100%;
    max-width: 800px;
    background: #e94fc2;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 0;
    color: #fff;
    font-size: 1.1rem;
    box-sizing: border-box;
}

.hashtags {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.meta {
    font-size: 1rem;
    margin-bottom: 10px;
}

.meta .label {
    background: #fff200;
    color: #000;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 10px;
}

.stats {
    display: flex;
    gap: 10px;
    font-size: 1.1rem;
    align-items: center;
    margin-top: 10px;
}

.stat-box {
    display: flex;
    align-items: center;
    background: #c218a9;
    border-radius: 4px;
    padding: 4px 14px 4px 8px;
    gap: 6px;
    min-width: 48px;
    min-height: 32px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.stat-box svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.stat-box span {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.nav-links ul li, .nav-links ul li.selected {
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
}

.nav-links ul li:hover, .nav-links ul li.selected:hover {
    transform: scale(1.08);
    box-shadow: 0 2px 12px #e94fc277;
    z-index: 2;
}

.nav-links ul li a,
.nav-links ul li.selected a,
.nav-links ul li a:visited,
.nav-links ul li a:active,
.nav-links ul li a:hover {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.18s;
}

.nav-links ul li.selected,
.nav-links ul li:hover {
    box-shadow: 0 2px 12px #fff7;
    transform: scale(1.08);
    z-index: 2;
}

.search-bar input[type="text"]:focus, .search-bar input[type="text"]:hover {
    box-shadow: 0 0 0 3px #e94fc288;
    outline: none;
    transition: box-shadow 0.2s;
}

.search-bar input[type="text"]::placeholder {
    color: #fff;
    opacity: 1;
    background: #e94fc2;
}

.banner.right .banner-img {
    width: auto;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .banner {
        width: 180px;
        min-width: 120px;
    }
    .video-section {
        max-width: 600px;
    }
    .video-player video {
        height: 250px;
    }
}

@media (max-width: 1000px) {
    .main-content {
        flex-direction: column;
        align-items: stretch;
    }
    .banner {
        width: 100vw;
        min-width: 0;
        max-width: 100vw;
        height: 40vh;
        justify-content: center;
        align-items: center;
    }
    .banner-img {
        height: 40vh;
        width: 100vw;
        object-fit: cover;
        max-width: 100vw;
        max-height: 40vh;
    }
    .video-section {
        margin: 0;
        width: 100vw;
        max-width: 100vw;
        border-radius: 0;
        padding: 10px 0 20px 0;
    }
    .video-player video {
        height: 220px;
    }
}

@media (max-width: 900px) {
    .main-content {
        flex-direction: column;
        align-items: center;
    }
    .banner {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        justify-content: center;
        align-items: center;
    }
    .video-section {
        margin: 10px 0;
        width: 95vw;
        max-width: 98vw;
    }
}

@media (max-width: 700px) {
    .navbar {
        padding: 0;
    }
    .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 6px 8px 6px 8px;
    }
    .site-logo {
        height: 38px;
        max-width: 90vw;
    }
    .search-bar {
        width: 100%;
        max-width: 100vw;
        margin-left: 0;
    }
    .search-bar input[type="text"] {
        width: 100%;
        font-size: 0.95rem;
        padding: 7px 10px;
    }
    .search-bar button {
        padding: 7px 12px;
        font-size: 0.95rem;
    }
    .nav-links ul {
        gap: 10px;
        height: auto;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }
    .nav-links ul li {
        font-size: 0.98rem;
        padding: 6px 8px;
    }
    .main-content {
        min-height: unset;
    }
    .banner {
        height: 30vh;
    }
    .banner-img {
        height: 30vh;
        max-height: 30vh;
    }
    .video-player video {
        height: 140px;
    }
    .video-info {
        font-size: 0.98rem;
        padding: 10px 6px;
    }
    .hashtags {
        font-size: 1.05rem;
    }
    .meta .label {
        font-size: 0.98rem;
        padding: 2px 6px;
    }
} 