:root {
    --bg-cream: #FEE5A6;
    --primary-orange: #FA9D17;
    --text-dark: #220E0A;
    --heading-brown: #562C14;
    --accent-green: #58C900;
    --card-white: #F8F7F2;
    --shadow: rgba(86, 44, 20, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, .nav-logo {
    font-family: 'Fredoka', sans-serif;
    color: var(--heading-brown);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.sticky-header {
    position: sticky;
    top: 0;
    background: var(--card-white);
    padding: 10px 0;
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

header {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-pic {
    width: 180px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 15px var(--shadow));
    border-radius: 25px;
    margin-top: 12px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 35px;
    color: var(--text-dark);
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-orange);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s, background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-green { background-color: var(--accent-green); }
.btn-dark { background-color: var(--heading-brown); }

section {
    padding: 60px 0;
}

.card {
    background: var(--card-white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px var(--shadow);
    text-align: center;
    margin-bottom: 30px;
}

/* Video Grid System 2026 */
#videos, #popular-videos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.video-card {
    background: var(--card-white);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    box-shadow: 0 10px 20px var(--shadow);
    text-align: left;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(86, 44, 20, 0.15);
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    display: block;
}

.view-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    backdrop-filter: blur(4px);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.video-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

/* Daily Spark Styling */
.spark-container {
    border: 3px dashed var(--primary-orange);
    background: #fff;
}

#spark-text {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 20px 0;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Embed */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

footer {
    text-align: center; padding: 40px; opacity: 0.8; font-size: 0.9rem;
}

@media (max-width: 600px) { h1 { font-size: 2.2rem; } .nav-links { display: none; } }