
        body {
            background-color: #020412; /* Màu nền tối như ảnh */
            color: white;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            height: 100vh;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* Logo ECHO */
        .logo {
            font-size: 3rem;
            font-weight: 800;
            color: #38bdf8; /* Màu xanh cyan */
            letter-spacing: 5px;
            text-transform: uppercase;
            margin-bottom: 60px;
            text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
        }

        /* Container chứa nút */
        .button-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        /* Nút tròn chính */
        #speak-btn {
            background-color: #2563eb; /* Màu xanh dương đậm */
            border: none;
            border-radius: 50%;
            width: 360px;
            height: 360px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            outline: none;
            
            /* Hiệu ứng phát sáng (Glow effect) */
            box-shadow: 
                0 0 0 8px rgba(37, 99, 235, 0.2), /* Vòng mờ ngoài cùng */
                0 0 30px rgba(59, 130, 246, 0.6), /* Ánh sáng tỏa ra */
                inset 0 0 20px rgba(255, 255, 255, 0.2); /* Ánh sáng bên trong */
        }

        /* Hiệu ứng khi di chuột vào */
        #speak-btn:hover {
            transform: scale(1.05);
            background-color: #3b82f6;
            box-shadow: 
                0 0 0 12px rgba(37, 99, 235, 0.3),
                0 0 50px rgba(59, 130, 246, 0.8),
                inset 0 0 20px rgba(255, 255, 255, 0.3);
        }

        /* Hiệu ứng khi bấm xuống */
        #speak-btn:active {
            transform: scale(0.95);
        }

        /* Icon bàn tay */
        #speak-btn i {
            font-size: 60px;
            color: white;
        }

        /* Chữ "BẤM ĐỂ NGHE" */
        .label-text {
            color: #94a3b8;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            margin-top: 10px;
        }