:root {
    --navy: #0a2540;
    --turquoise: #19c3cf;
    --turquoise-dark: #0a8a92;
    --bg: #f6f8fa;
    --white: #ffffff;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    color: #333;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 30px;
}

h2 {
    color: var(--navy);
    border-left: 5px solid var(--turquoise);
    padding-left: 10px;
    margin-top: 30px;
}

/* Keep your existing row structure */
.video-row {
    display: table;
    width: 100%;
    background: var(--white);
    border-left: 4px solid var(--turquoise);
    margin-bottom: 8px;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.video-title,
.video-link,
.video-description {
    display: table-cell;
    padding: 8px;
    vertical-align: middle;
}

.video-title {
    width: 35%;
    font-weight: 600;
    color: var(--navy);
}

.video-link {
    width: 15%;
}

.video-link a {
    color: var(--turquoise-dark);
    font-weight: 600;
    text-decoration: none;
}

.video-link a:hover {
    color: var(--turquoise);
    text-decoration: underline;
}

.video-description {
    color: #666;
}

.video-row:hover {
    background: #f9fcfd;
}