@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --text-main: #f0f0f0;
    --text-muted: #888;
    --accent: #ff3366;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--text-main);
}

.gallery-container {
    padding: 3rem 5%;
}

.gallery-container h2 {
    font-weight: 300;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.video-card {
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.thumb-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.video-card:hover .thumb-wrapper img {
    transform: scale(1.05);
}

.card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
}

.card-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.player-container {
    padding: 2rem 5%;
    position: relative;
}

.hidden {
    display: none !important;
}

#video-player {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    background: #000;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.btn-close {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 5%;
}

.video-info {
    max-width: 1200px;
    margin: 2rem auto;
}
