@import url('../../default/assets/style.css');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');

:root {
    --bg: #e0e7ff;
    --primary: #4f46e5;
    --glass: rgba(255, 255, 255, 0.7);
    --text: #1e1b4b;
    --border: rgba(255, 255, 255, 0.4);
}

body {
    background: var(--bg);
    background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    font-family: 'Quicksand', sans-serif;
    color: var(--text);
}

.container {
    padding: 20px;
}

.site-header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    border-radius: 0 0 20px 20px;
    margin-bottom: 30px;
}

.site-logo {
    color: var(--primary) !important;
    font-weight: 700;
}

.video-card {
    background: var(--glass);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.video-thumb {
    border-bottom: 1px solid var(--border);
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}