@import url('../../default/assets/style.css');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap');

:root {
    --bg: #000;
    --primary: #d4af37;
    /* Gold */
    --surface: #1a1a1a;
    --text: #fff;
    --border: #333;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Lato', sans-serif;
}

.container {
    border: 1px solid var(--primary);
    background: var(--surface);
    margin-top: 30px;
}

.site-header {
    background: #000;
    border-bottom: 2px solid var(--primary);
    padding: 20px 0;
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--primary) !important;
    letter-spacing: 2px;
}

.video-card {
    background: #000;
    border: 1px solid #222;
    transition: border-color 0.3s;
}

.video-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
}