:root {
            --primary: #82318D; --primary-dark: #6A2772; --accent: #D95A74;
            --success: #28a745; --text-dark: #3D2C27; --text-body: #514D52; --text-light: #6A6A6A;
            --bg-white: #FFFFFF; --bg-light: #f8f4f1; --border-light: #E5E5E5;
            --font-body: 'Montserrat', sans-serif; --font-heading: 'Playfair Display', Georgia, serif;
            --space-md: 1rem; --space-lg: 1.5rem; --space-xl: 2rem; --space-2xl: 3rem;
            --radius: 16px; --transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body); font-size: 16px; line-height: 1.7;
            color: var(--text-body); background-color: var(--bg-light);
            padding: var(--space-2xl) var(--space-md);
        }
        main.container { max-width: 1100px; margin: 0 auto; }
        header { text-align: center; margin-bottom: var(--space-2xl); }
        header h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 2.5rem); color: var(--text-dark); }
        header p { font-size: 1.1rem; color: var(--text-light); margin-top: 0.5rem; }
        h2 { font-family: var(--font-heading); margin-bottom: var(--space-lg); color: var(--text-dark); border-bottom: 2px solid var(--primary-dark); padding-bottom: 0.5rem; }

    .video-section { margin-bottom: var(--space-2xl); }
    .video-card { border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; background-color: #000; aspect-ratio: 16 / 9; }
    #hero-player { width: 100%; height: 100%; --plyr-color-main: var(--accent); }

    .reels-section { margin-bottom: var(--space-2xl); }
    #reels-list-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: var(--space-lg);
    }
    .reel-item {
        display: flex; flex-direction: column;
        border: 1px solid var(--border-light); border-radius: 12px;
        background: var(--bg-white); cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        overflow: hidden;
    }
    .reel-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .reel-item.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(130, 49, 141, 0.5); }

    .reel-header { padding: 10px 15px; background: #f9f9f9; border-bottom: 1px solid var(--border-light); }
    .reel-type { font-weight: 700; font-size: 0.75rem; padding: 3px 10px; border-radius: 20px; color: white; display: inline-block; }
    .type-PROBLEMA { background-color: var(--accent); }
    .type-ĮŽVALGA { background-color: var(--primary); }
    .type-BŪSENA { background-color: var(--success); }
    
    .reel-content { padding: 15px; flex-grow: 1; }
    .reel-title { font-weight: 600; font-size: 1rem; color: var(--text-dark); display: block; }
    .reel-time { font-variant-numeric: tabular-nums; font-size: 0.85rem; color: var(--text-light); margin-top: 4px; display: block; }

    .transcripts-section h2 { margin-top: var(--space-2xl); }
    .transcript-item { margin-bottom: var(--space-2xl); padding: var(--space-lg); background: var(--bg-white); border-radius: var(--radius); border: 1px solid var(--border-light); }
    .transcript-item h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }
    .transcript-item .meta { font-size: 0.9rem; color: var(--text-light); margin: 0.5rem 0 1rem 0; }
    .transcript-item p { white-space: pre-wrap; line-height: 1.8; }