:root {
            --bg-color: #050608;
            --grid-color: rgba(255, 255, 255, 0.02);
            --card-bg: rgba(13, 16, 23, 0.65);
            --card-border: rgba(255, 255, 255, 0.06);
            --card-border-hover: rgba(255, 176, 0, 0.3);
            --text-color: #e2e8f0;
            --text-muted: #6b7c93;
            --color-trig: #ffb000;
            --transition-speed: 0.3s;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-color);
            background-image:
                radial-gradient(var(--grid-color) 1px, transparent 1px),
                radial-gradient(var(--grid-color) 1px, transparent 1px);
            background-size: 40px 40px;
            background-position: 0 0, 20px 20px;
            color: var(--text-color);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 4rem 2rem;
        }

        .bg-glow {
            position: absolute;
            top: 20%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 176, 0, 0.06) 0%, transparent 70%);
            z-index: -1;
            pointer-events: none;
            filter: blur(50px);
        }

        header {
            text-align: center;
            max-width: 800px;
            margin-bottom: 3rem;
        }

        header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #ffffff 40%, var(--color-trig) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        header p {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .controls-container {
            width: 100%;
            max-width: 600px;
            margin-bottom: 3rem;
        }

        .search-wrapper {
            position: relative;
            width: 100%;
        }

        .search-input {
            width: 100%;
            padding: 1rem 1.5rem 1rem 3.25rem;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            color: var(--text-color);
            background: rgba(15, 18, 30, 0.55);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            outline: none;
            backdrop-filter: blur(20px);
            transition: all var(--transition-speed) ease;
        }

        .search-input:focus {
            border-color: rgba(255, 176, 0, 0.5);
            box-shadow: 0 4px 25px rgba(255, 176, 0, 0.15);
        }

        .search-icon {
            position: absolute;
            left: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            fill: var(--text-muted);
            pointer-events: none;
        }

        .roadmap-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 24px;
            padding: 2.5rem;
            backdrop-filter: blur(16px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .roadmap-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--color-trig);
        }

        footer {
            margin-top: 5rem;
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
        }