<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>GigaDial - So Long, And Thanks for All The Fish</title>
    <link rel="shortcut icon" href="/favicon.ico">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: courier, monospace;
            background-color: #ffffff;
            color: #000000;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 1rem 2rem;
            padding-top: 3rem;
        }
        
        .container {
            text-align: center;
            max-width: 800px;
        }
        
        h1 {
            font-size: 2.5rem;
            margin: 0 0 1rem 0;
            font-weight: bold;
        }
        
        .gigadial-name {
            font-family: courier, monospace;
        }
        
        .giga {
            color: #000000;
        }
        
        .dial {
            color: #ff9900;
        }
        
        .goodbye-message {
            font-size: 1.5rem;
            margin: 2rem 0;
            line-height: 1.8;
            color: #333333;
        }
        
        @media (max-width: 600px) {
            h1 {
                font-size: 2rem;
            }
            
            .goodbye-message {
                font-size: 1.2rem;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <h1 class="gigadial-name">
            <span class="giga">Giga</span><span class="dial">Dial</span>
        </h1>
        
        <div class="goodbye-message">
            <p>So Long, And Thanks for All The Fish</p>
            <p style="margin-top: 1.5rem; font-size: 1.2rem;">
                After 20+ years of service, GigaDial is shutting down.
            </p>
            <p style="margin-top: 1rem; font-size: 1rem; color: #666666;">
                Thank you for being part of our journey in creating podcast-powered stations.
            </p>
        </div>
    </div>
</body>
</html>
