body {
            background-color: #121212;
            color: #ffffff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            margin: 0;
            text-align: center;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
        }
        p {
            color: #aaaaaa;
            font-size: 1.2rem;
            max-width: 500px;
            line-height: 1.5;
        }
        .tags {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
        }
        .tag {
            background-color: #2a2a2a;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.9rem;
            color: #00d2ff;
        }