        /* Same CSS as home template */
        :root {
            --bg-color: #fff;
            --text-color: #000;
        }

        .dark {
            --bg-color: #242424;
            --text-color: #ccc;
        }

        .light {
            --bg-color: #fff;
            --text-color: #000;
        }

        .gray {
            --bg-color: #808080;
            --text-color: #333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            transition: background-color 300ms, color 300ms;
            padding-top: 4rem;
        }

        main {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        
        header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        em {
            font-weight: bolder;
            font-style: normal;
        }
        