@import url('../../default/assets/style.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg: #ffffff;
    --primary: #000000;
    --text: #171717;
    --text-light: #737373;
    --border: #e5e5e5;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.site-logo {
    font-weight: 600;
    font-size: 20px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 30px;
}

.video-card {
    border: none;
    transition: opacity 0.2s;
}

.video-card:hover {
    opacity: 0.8;
}

.video-thumb {
    border-radius: 4px;
}

.video-title {
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}