

        .home-button {
            position: relative;
            padding: 16px 32px;
            background: linear-gradient(145deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            font-size: 18px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            overflow: hidden;
            box-shadow:
                0 4px 0 #3a9ae0,
                0 6px 10px rgba(0, 0, 0, 0.1),
                inset 0 1px 2px rgba(255, 255, 255, 0.3);
            transition: all 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .home-button:hover {
            transform: translateY(-2px);
            box-shadow:
                0 6px 0 #3a9ae0,
                0 8px 15px rgba(0, 0, 0, 0.15),
                inset 0 1px 2px rgba(255, 255, 255, 0.4);
        }

        .home-button:active {
            transform: translateY(2px);
            box-shadow:
                0 2px 0 #3a9ae0,
                0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .home-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .home-button:hover::before {
            opacity: 1;
        }

        .home-button svg {
            margin-left: 8px;
            vertical-align: middle;
        }