<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>SYMOCK DAILY - 首页</title>
    <link rel="stylesheet" href="/css/index.css">
</head>
<body>
    <!-- 噪点纹理遮罩层，保持一致的页面质感 -->
    <div class="noise-overlay"></div>
    
    <div class="app-container">
        
        <header class="header">
            <div class="logo">SYMOCK <span>DAILY</span></div>
            <div class="subtitle">ONE DAY. ONE LAUGH.</div>
        </header>

        <main class="main-content">
            <section class="hero-section">
                <h1 class="hero-title">ARCHIVE</h1>
                <p class="hero-desc">浏览我们为您精选的每日最佳搞笑视频。每天仅此一个，错过不再有。</p>
            </section>

            <!-- 日期选择器区域 -->
            <section class="date-picker-section brutal-box">
                <label for="archiveDate" class="brutal-label">JUMP TO DATE:</label>
                <div class="date-input-wrapper">
                    <input type="date" id="archiveDate" class="brutal-input">
                    <button id="jumpBtn" class="brutal-btn-small">GO</button>
                </div>
                <p id="dateError" class="error-msg hidden">日期必须在 2026-07-01 到今天之间！</p>
            </section>

            <!-- 视频列表区域 -->
            <section class="video-grid" id="videoGrid">
                <!-- 列表将由 JS 动态生成 -->
                <div class="loading-text">LOADING ARCHIVES...</div>
            </section>
        </main>
        
        <footer class="footer">
            <p>SYMOCK DAILY ARCHIVE. NO DISTRACTIONS.</p>
        </footer>
    </div>

    <script src="/js/index.js"></script>
</body>
</html>