<%- include('partials/layout_start', { activePage: 'videos', pageTitle: 'Manage Videos' }) %>

<div class="admin-section">
    <form action="/admin/video/add" method="POST" style="margin-bottom: 30px; background: #1e293b; padding: 20px; border-radius: 8px; border: 1px solid #334155; max-width: 800px;">
        <h4 style="margin-top: 0; margin-bottom: 15px;">Add New Video</h4>
        <div class="form-group" style="margin-bottom: 15px;">
            <label style="display: block; margin-bottom: 5px; font-weight: bold;">Video Title</label>
            <input type="text" name="title" placeholder="e.g. Exploring the Amazon Rainforest" required style="width: 100%; padding: 10px; border: 1px solid #475569; background: #0f172a; color: #f1f5f9; border-radius: 4px;">
        </div>
        <div class="form-group" style="margin-bottom: 15px;">
            <label style="display: block; margin-bottom: 5px; font-weight: bold;">Video URL (YouTube or Facebook)</label>
            <input type="url" name="youtube_url" placeholder="Paste the full video link here" required style="width: 100%; padding: 10px; border: 1px solid #475569; background: #0f172a; color: #f1f5f9; border-radius: 4px;">
        </div>
        <button type="submit" class="btn-primary" style="padding: 10px 20px; background-color: #f59e0b; color: #1e293b; border: none; font-weight: bold; cursor: pointer; border-radius: 4px;">Add Video</button>
    </form>
    
    <div class="grid-2">
        <% videos.forEach(video => { %>
            <div style="background: #1e293b; border: 1px solid #334155; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column;">
                <div style="background-color: #0f172a; padding: 10px; text-align: center;">
                    <% if (video.platform === 'facebook') { %>
                        <div style="padding: 30px; color: #1877F2; font-size: 2rem;"><i class="fab fa-facebook"></i></div>
                    <% } else { %>
                        <img src="https://img.youtube.com/vi/<%= video.embed_id %>/hqdefault.jpg" style="max-width: 100%; height: auto; border-radius: 4px;">
                    <% } %>
                </div>
                <div style="padding: 15px; display: flex; justify-content: space-between; align-items: center; flex-grow: 1;">
                    <div style="font-weight: 500; padding-right: 15px;">
                        <span style="color: <%= video.platform === 'facebook' ? '#1877F2' : '#FF0000' %>; margin-right: 5px;">
                            <i class="fab fa-<%= video.platform === 'facebook' ? 'facebook' : 'youtube' %>"></i>
                        </span>
                        <%= video.title %>
                    </div>
                    <form action="/admin/video/delete/<%= video.id %>" method="POST" style="margin:0;">
                        <button type="submit" style="color:white; background: #ef4444; border:none; padding: 8px 12px; border-radius: 4px; cursor:pointer;"><i class="fas fa-trash-alt"></i> Delete</button>
                    </form>
                </div>
            </div>
        <% }) %>
    </div>
</div>

<%- include('partials/layout_end') %>
