<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AutoPod - Radio & Podcast Platform</title>
    <meta name="description" content="AutoPod - Professional radio and podcast hosting platform">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            text-align: center;
        }

        .logo-section {
            margin-bottom: 3rem;
        }

        .logo {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .brand-name {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .tagline {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 3rem;
            font-weight: 300;
        }

        .content-card {
            background: rgba(255,255,255,0.95);
            border-radius: 16px;
            padding: 3rem 2rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        .content-card h2 {
            color: #2a5298;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            font-weight: 600;
        }

        .content-card p {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .feature {
            text-align: center;
            padding: 1.5rem;
            background: rgba(42, 82, 152, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(42, 82, 152, 0.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2a5298;
        }

        .feature h3 {
            color: #2a5298;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .feature p {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        .cta-section {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(42, 82, 152, 0.1);
        }

        .cta-text {
            color: #666;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .footer {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            margin-top: 2rem;
        }

        .footer a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }

            .brand-name {
                font-size: 2.5rem;
            }

            .logo {
                font-size: 3rem;
            }

            .content-card {
                padding: 2rem 1.5rem;
            }

            .features {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="logo-section">
            <div class="logo">🎙️</div>
            <h1 class="brand-name">AutoPod</h1>
            <p class="tagline">Professional Radio & Podcast Platform</p>
        </div>

        <div class="content-card">
            <h2>Powering Audio Content</h2>
            <p>AutoPod provides comprehensive solutions for radio stations and podcast creators, delivering professional-grade hosting, distribution, and management tools.</p>

            <div class="features">
                <div class="feature">
                    <div class="feature-icon">📻</div>
                    <h3>Radio Stations</h3>
                    <p>Complete station management and broadcasting solutions</p>
                </div>
                <div class="feature">
                    <div class="feature-icon">🎧</div>
                    <h3>Podcasts</h3>
                    <p>Professional podcast hosting and distribution</p>
                </div>
                <div class="feature">
                    <div class="feature-icon">🚀</div>
                    <h3>Scalable</h3>
                    <p>Built for growth with enterprise-grade infrastructure</p>
                </div>
            </div>

            <div class="cta-section">
                <p class="cta-text">Trusted by broadcasters and content creators worldwide</p>
            </div>
        </div>

        <footer class="footer">
            <p>&copy; 2024 AutoPod. All rights reserved. | <a href="https://autopod.xyz" target="_blank">Learn More</a></p>
        </footer>
    </div>
</body>
</html>